.login-form .panel.panel-default {
    background-color: #0d2957;
}
div#app {
    background-color: #f5f8fa;
    height: 100vh;
}
label.col-sm-12.control-label, label.col-md-12.control-label {
    text-align: left;
    color: #444;
    margin-bottom: 5px;
}
.login-form .panel.panel-default {
    background-color: transparent;
    box-shadow: 2px 6px 5px 3px #e2dfdf;
}
.login-form .panel-default>.panel-heading {
    color: #333;
    background-color: #0d2957;
    border-color: #d3e0e9;
    color: #fff;
    border: 0px;
    font-size: 22tpx;
    text-align: center;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
button#load {
    color: #fff;
    background-color: #0d2957;
    padding: 5px 20px;
    font-family: 'Poppins', sans-serif;
}
.login-form .navbar-right a:hover {
    color: #fff;
    background-color: #000;
}
#frontend-navbar-collapse .navbar-right a {
    background-color: #0d2957;
    margin: 10px 0;
    color: #fff !important;
    padding: 7px 20px !important;
    border-radius: 5px;
}
.form-control {
    width: 100%;
    height: 46px;
    padding: 6px 12px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccd0d2;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-radius: 50px;
}
.login-form .checkbox label,.login-form .radio label {
color: #444 !important;
}
.col-md-6.login-form {
    width: 450px;
    margin: 0 auto;
    float: none;
    position: relative;
    top: 100px;
}
input.btn.btn-primary.login {
    background-color: #0d2957;
    padding: 7px 40px;
    border-radius: 6px;
}
.loader{
width: 100% !important;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    margin: 0 auto;
    text-align: center;
}
.loader img{
	position: relative;
	top:50%;
	transform: translateY(-50%);
}
.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
    width: 500px;
    text-align: center;
    padding:8px;
    margin:20px auto 0;
}
.navbar-default {
    margin-bottom: 0px;
}
.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open>.btn-info.dropdown-toggle.focus, .open>.btn-info.dropdown-toggle:focus, .open>.btn-info.dropdown-toggle:hover{
    outline: 0px;
}
.top_box a{
    color: #fff !important;
    font-size: 20px !important;
    line-height: 30px !important;
}
/* login_btn */
.twoToneCenter {
 text-align: center;
 margin: 1em 0;
}
.twoToneButton {
    display: inline-block;
    outline: none;
    padding: 7px 20px;
    line-height: 1.4;
    background: #0d2957;
    background: #0d2957;
    border-radius: 4px;
    border: 1px solid #0d2957;
    color: #dadada;
    position: relative;
    transition: padding-right 0.3s ease;
    font-weight: 700;
    box-shadow: 0 1px 0 #0d2957 inset, 0px 1px 0 #0d2957;
}
/*.twoToneButton:hover {
 box-shadow: 0 0 10px #080808 inset, 0px 1px 0 #3b3b3b;
 color: #f3f3f3;
}*/
.twoToneButton:active {
 box-shadow: 0 0 10px #080808 inset, 0px 1px 0 #3b3b3b;
 color: #ffffff;
 background: #080808;
 background: linear-gradient(to bottom, #3b3b3b 0%, #2e2e2e 50%, #141414 51%, #080808 100%);
}
.twoToneButton.spinning {
 background-color: #212121;
 padding-right: 40px;
}
.twoToneButton.spinning:after {
 content: "";
 right: 6px;
 top: 50%;
 width: 0;
 height: 0;
 box-shadow: 0px 0px 0 1px #080808;
 position: absolute;
 border-radius: 50%;
 -webkit-animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
         animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
}
.twoToneButton.spinning:before {
 content: "";
 width: 0px;
 height: 0px;
 border-radius: 50%;
 right: 6px;
 top: 50%;
 position: absolute;
 border: 2px solid #000000;
 border-right: 3px solid #27ae60;
 -webkit-animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
         animation: rotate360 0.5s infinite linear, exist 0.1s forwards ease;
}
label.error{
    color: red;
    font-size: 12px;
}
.btn-primary.active, .btn-primary:active, .btn-primary:hover, .open>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0d2957;
    border-color: #1f648b;
}

@media screen and (max-width: 991px) {

}
@media screen and (max-width: 767px) {
body#app-layout .login-form {
    width: 320px;
    top: 50px;
}
#frontend-navbar-collapse .navbar-right a {
    margin: 10px 10px;
}
}

@-webkit-keyframes rotate360 {
 100% {
   -webkit-transform: rotate(360deg);
           transform: rotate(360deg);
 }
}
@keyframes rotate360 {
 100% {
   -webkit-transform: rotate(360deg);
           transform: rotate(360deg);
 }
}
@-webkit-keyframes exist {
 100% {
   width: 15px;
   height: 15px;
   margin: -8px 5px 0 0;
 }
}
@keyframes exist {
 100% {
   width: 15px;
   height: 15px;
   margin: -8px 5px 0 0;
 }
}