* {
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: "Open Sans","Roboto", "Oswald", sans-serif;	
	margin: 0px; 
}

a {
	font-family: "Open Sans", Roboto, Lato, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #333333;
}

.w-full {width: 100%;}


input {
	outline: none;
	border: none;
}

button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

[ Text ]*/
.txt1 {
	font-family: "Open Sans", Roboto, Lato, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #999999;
}

.txt2 {
	font-family: "Open Sans", Roboto, Lato, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #00ad5f;
}

/*login */

.main {
  width: 100%;
  margin: 0 auto;
}

.container-login {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #f2f2f2;
}

.wrap-login {
  width: 1170px;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;
-webkit-box-shadow: 10px 10px 73px 44px rgba(230,230,230,1);
-moz-box-shadow: 10px 10px 73px 44px rgba(230,230,230,1);
box-shadow: 10px 10px 73px 44px rgba(230,230,230,1);  
}

/* login more */
.login-more {
  width: 50%;
  background-image: url('../resources/img/background-login.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  position: relative;
  z-index: 1;
}

.login-more::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
}

.login-more-container{
  padding: 40px 65px 420px 65px;
}

.login-more h1{
	color: #fff; 
	font-weight: bolder; 
	font-size: 50px;
	margin-bottom: 0px;
}


.login-more h2{
	color: #fff; 
	font-weight: bold; 
	font-size: 20px;
	    margin-top: 0px;
	
}



.login-more h4{
	top: 50px; 
	color: #fff; 
	position: relative;
	}


/* Form */

.login-form {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 65px 65px 40px 65px;
}

.login-form-title {
 font-family: "Open Sans", Roboto, Lato, Arial, sans-serif;
  font-size: 20px;
  color: #555555;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;

  width: 100%;
  display: block;
}

.login-form h1, .login-form h4{
	font-family:inherit;
	font-weight:bold;
	color:#286090;
}

.login-form h1{
	text-transform: uppercase;
	font-size:44px;
	margin-bottom:0px;
}

.login-form h4{
	margin-top: 0px;
	text-transform: capitalize;
}


/*Input*/

.wrap-input {
  width: 100%;
  position: relative;
}


/*Button*/
.container-login-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  border-radius: 3px;
  background: #0081af;

	font-family: "Open Sans", Roboto, Lato, Arial, sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-login:hover {
  background: #006d94;
}



/*Responsive*/

@media (max-width: 992px) {
  .login-form {
    width: 60%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .login-more {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .login-form {
    width: 100%;
  }

  .login-more {
    width: 100%;
  }

  .login-more-container{
    display:none;
  }
}

@media (max-width: 576px) {
  .login-form {
	padding-left: 30px;
    padding-right: 30px;
    padding-top: 40px;    
  }

}

