@font-face {
font-family: roboto;
src: url(../../fonts/roboto/roboto-regular.ttf);
}
@font-face {
font-family: robotolight;
src: url(../../fonts/roboto/roboto-light.ttf);
}
@font-face {
font-family: robotomedium;
src: url(../../fonts/roboto/roboto-medium.ttf);
}
@font-face {
font-family: robotobold;
src: url(../../fonts/roboto/roboto-bold.ttf);
}

.login-bg {
	background-image: url(../../images/bg.jpg);
    background-size: cover;
    height: 100%;
    background-color: #146091;
    background-repeat: no-repeat;
    padding-top: -20px;
}

element.style {
    padding: 100px 0;
}
h1 {
	font-family: robotolight;
	font-size: 53px;
}

h2 {
	font-family: robotomedium;
	font-size: 28px;
	line-height: 42px;
}
h3 {
	font-family: roboto;
	font-size: 18px;
	line-height: 25px;
	color:#006599;
}

h4 {
	font-family: robotobold;
	font-size: 28px;
	line-height: 38px;
	color:#fff;
}


.login-left {
	color: #fff;
	margin-top: 80px;
  padding: 80px 0px 50px 0px;
}


.login-right {
	margin: 0px 0px 0px 0px;
}

.logo{
  width:100%;
  /*height:100%;*/
  padding: 10px;
}

.login-box-container {
  padding: 15.5% 0;
}

.login-card {
  padding: 0px;
  width: 465px;
  background-color: #fff;
  margin: 0 auto 10px;
  border-radius: 2px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border-radius: 9px;
}

.center {
  margin: auto;
  width: 80%;
  padding-top: 10px;
  padding-bottom: 5px;
  padding-right: 20px;
  padding-left: 20px;
}

.logo-box-container{
	width: 100%;
	/*height:235px;*/
	border-radius: 9px 9px 0px 0px;
	background-color: #006599;
	padding: 25px 40px 20px 40px;
}

.login-details {
  padding: 25px 40px 30px 40px;

}

.login-card h1 {
  font-weight: 100;
  text-align: center;
  font-size: 2.3em;
}

.login-card input[type=submit] {
  width: 100%;
  font-family: robotomedium;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.login-card input[type=text], input[type=password] {
  height: 44px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  /* border-radius: 2px; */
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.login-card input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #006599;
  border-top: 1px solid #006599;
  font-family: roboto;
  font-size: 14px;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.login {
  text-align: center;
  font-size: 14px;
  font-family: roboto;
  font-weight: 700;
  height: 36px;
  padding: 0 8px;
/* border-radius: 3px; */
/* -webkit-user-select: none;
  user-select: none; */
}

.login-form{
  width:350px;
  padding:40px 30px;
  background:#eee;
  @include border-radius(4px);
  margin:auto;
  position: absolute;
  left: 0;
  right: 0;
  top:50%;
  @include translateY(-50%);
}
.form-group{
  position: relative;
  margin-bottom:15px;
}
.form-control{
  width:100%;
  height:50px;
  border:none;
  padding:5px 7px 5px 15px;
  background:#fff;
  color:#666;
  border:2px solid #ddd;
  @include border-radius(4px);
    &:focus, &:focus + .fa{
      border-color:#006599;
      color:##006599;
    }
}
.form-group .fa{
  position: absolute;
  right:15px;
  top:17px;
  color:#999;
}
.log-status.wrong-entry {
 @include animation( wrong-log 0.3s);
}
.log-status.wrong-entry .form-control, .wrong-entry .form-control + .fa {
  border-color: #ed1c24;
  color: #ed1c24;
}
.log-btn{
  background:#006599;
  dispaly:inline-block;
  width:100%;
  font-size:16px;
  font-family: roboto;
  height:45px;
  color:#fff;
  text-decoration:none;
  border:none;
  border-radius: 9px;
  @include border-radius(4px);
}

.fa-eye:before, .fa-eye-slash:before{
  color: #006599;
}

.link{
  text-decoration:none;
  color:#006599;
  float:right;
  font-family: robotomedium;
  font-size:12px;
  margin-bottom:15px;
  &:hover{
    text-decoration: underline;
    color:#006599;
  }
}
/*.alert{
  display:none;
  font-size:12px;
  color:#f00;
  float:left;
}*/
@include keyframes (wrong-log) {
  0%, 100% { left: 0px;}
  20% , 60%{left: 15px;}
  40% , 80%{left: -15px;}
}

