/*
 *
 * login-register modal
 * Autor: Creative Tim
 * Web-autor: creative.tim
 * Web script: http://creative-tim.com
 * 
 */
 
/*  Shake animation  */

@charset "UTF-8";

.animated {
  -webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}

.animated.hinges {
	-webkit-animation-duration: 2s;
	   -moz-animation-duration: 2s;
	     -o-animation-duration: 2s;
	        animation-duration: 2s;
}

.animated.slow {
	-webkit-animation-duration: 3s;
	   -moz-animation-duration: 3s;
	     -o-animation-duration: 3s;
	        animation-duration: 3s;
}

.animated.snail {
	-webkit-animation-duration: 4s;
	   -moz-animation-duration: 4s;
	     -o-animation-duration: 4s;
	        animation-duration: 4s;
}

.vertical-alignment-helper {
    display:table;
    height: 100%;
    width: 100%;
    pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
}

.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events:none;
}

.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width:inherit;
    max-width:inherit; /* For Bootstrap 4 - to avoid the modal window stretching full width */
    height:inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events: all;
}

@-webkit-keyframes shake {
	0%, 100% {-webkit-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
	0%, 100% {-moz-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
	0%, 100% {-o-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.shake {
	-webkit-animation-name: shake;
	-moz-animation-name: shake;
	-o-animation-name: shake;
	animation-name: shake;
}

.login .modal-dialog{
    width: 350px;
}

.login .modal-footer{
    border-top: 0;
    margin-top: 0px;
    padding: 10px 20px 20px;
}

.login .modal-header {
    border: 0 none;
    padding: 15px 15px 15px;
/*     padding: 11px 15px; */
}

.login .modal-body{
/*     background-color: #eeeeee; */
}

.login .forgot {
    color: #797979;
    margin-left: 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.login .btn-login, .registerBox .btn-register, .resetBox .btn-reset{
    background-color: #00BBFF;
    border-color: #00BBFF;
    border-width: 0;
    color: #FFFFFF;
    display: block;
    margin-bottom: 20px;
    padding-top: 10px;
	padding-bottom: 10px;
    text-transform: uppercase;
	text-align: center;
    width: 47%;
	float: right;
}

.login .btn-login:hover, .registerBox .btn-register:hover, .resetBox .btn-reset:hover{
    background-color: #00A4E4;
    color: #FFFFFF;
}

.login .btn-success {
    background-color: #4EF78D;
    border-color: #4EF78D;
    border-width: 0;
    color: #000000;
    display: block;
    margin-bottom: 20px;
    padding-top: 10px;
	padding-bottom: 10px;
    text-transform: uppercase;
	text-align: center;
    width: 100%;
}

.login .btn-success:hover {
    background-color: #04B245;
    color: #FFFFFF;
}

.login .btn-cancel, .registerBox .btn-cancel, .resetBox .btn-cancel {
    background-color: #F80A0E;
    border-color: #F80A0E;
    border-width: 0;
    color: #FFFFFF;
    display: block;
    margin: 0 auto;
    padding-top: 10px;
	padding-bottom: 10px;
    text-transform: uppercase;
	text-align: center;
    width: 47%;
	float: left;
}

.login .btn-cancel:hover, .registerBox .btn-cancel:hover, .resetBox .btn-cancel:hover{
    background-color: #D20609;
    color: #FFFFFF;
}

.login .form-control{
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 0px 0px rgba(0, 0, 0, 0.09) inset;
    color: #FFFFFF;
}

.login .form-control:hover{
    background-color: rgba(0,0,0,.16);
}

.login .form-control:focus{
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04) inset;
    background-color: rgba(0,0,0,0.23);
    color: #FFFFFF;
}

.login .box .form input[type="text"], .login .box .form input[type="password"], .login .box .form input[type="email"] {
    border-radius: 3px;
    border: none;
    color: #333333;
    font-size: 16px;
    height: 46px;
    margin-bottom: 5px;
    padding: 13px 12px;
    width: 100%;
}

@media (max-width:400px){
    .login .modal-dialog {
        width: 100%;
    }
}

.big-login, .big-register, .big-reset{
    background-color: #00bbff;
    color: #FFFFFF;
    border-radius: 7px;
    border-width: 2px;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    padding: 16px 60px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.big-login:hover{
    background-color: #00A4E4;
    color: #FFFFFF;
}

.big-register{
    background-color: rgba(0,0,0,.0);
    color: #00bbff;
    border-color: #00bbff;
}

.big-register:hover{
    border-color: #00A4E4;
    color:  #00A4E4;
}

.big-reset{
    background-color: rgba(0,0,0,.0);
    color: #00bbff;
    border-color: #00bbff;
}

.big-reset:hover{
    border-color: #00A4E4;
    color:  #00A4E4;
}