/*******************
Login register and recover password Page
******************/
.login-register {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%;
  padding: 10% 0;
  position: fixed; }

.login-box {
  width: 400px;
  margin: 0 auto; }
  .login-box .footer {
    width: 100%;
    left: 0px;
    right: 0px; }
  .login-box .social {
    display: block;
    margin-bottom: 30px; }

#recoverform {
  display: none; }

.login-sidebar {
  padding: 0px;
  margin-top: 0px; 
}
.login-sidebar .login-box {
    left: 0px;
    position: absolute;
    height: 100%; 
	border-radius: 0;
}
/* login page */
.login-box.card .card-body {
    display: table;
    width: 100%;
    height: 100%;
	text-align: center;
}
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
	border-radius:60px !important;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
    color: white;
	
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
	
}
.login-form {
    display: table-cell;
    vertical-align: middle;
} 
.m-t-40 {
    margin-top: 40px;
}
.m-t-20 {
    margin-top: 20px;
}	
.form-control {
    padding: 10px;
    margin-bottom: 23px;
}
.login-box .btn {
        background: rgba(16, 110, 190,1) !important;
	background-color: rgba(16, 110, 190,1) !important;
}

.login-box .form-group {
   position: relative;
}
.error {
    position: absolute;
    bottom: -22px;
    font-size: 13px;
    color: #f00;
}
@media screen and (max-width:996px) 
{
.login-form {
  padding: 20px;
}
.login-box {
    width: 100%;
 }
}

