*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
body {
    position: relative;
    font-family: 'PingLCG-Regular', sans-serif;
    color: #333;
    font-size: 13px;
    background: #f0f1f3;
    display: flex;
    flex-direction: column;
}
input {
    font-family: 'PingLCG-Regular', sans-serif;
    font-size: 12px;
}
input:focus, textarea:focus, select:focus {
    animation: showFocus .3s;
    border-color: #7aa7dd;
    box-shadow: 0 0 0 2px rgba(116,180,255,.7);
    outline-color: #7aa7dd;
}
@keyframes showFocus {
    0% {
        border-color: #dbdbdb;
        border-radius: -1px;
        box-shadow: 0 0 0 10px transparent
    }
    100% {
        border-color: #7aa7dd!important;
        border-radius: 1px;
        box-shadow: 0 0 0 2px #91bff5
    }
}
button {
    font-family: 'PingLCG-Regular', sans-serif;
    outline: none;
}
a {
    text-decoration: none;
    color: #666;
}
.light {
    font-family: 'FiraSans-Light', sans-serif;
}
.semibold {
    font-family: 'PingLCG-Bold', sans-serif;
}
.header {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
}
.body {
    background-color: #ecf0f8;
    background-image: url(../images/auth-img.png);
    background-size: cover;
    background-position: center;
    padding-top: 40px;
    padding-bottom: 40px;
    flex: 1;
}
.body .container {
    margin: 0 auto;
    width: 280px;
}
.body .container h1 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}
.login {
    width: 100%;
    background: white;
    border-radius: 5px;
    border: #fff 1px solid;
    box-shadow: rgba(0,0,0,0.10) 0px 3px 5px;
    padding: 20px 25px 20px 25px;
    border-top: 3px solid #a54ecb;
}
.login label {
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
    color: #666;
    font-size: 13px;
}
.login input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    background: #f7f7f7;
    box-shadow: inset 0 1px 2px 0 rgba(0,0,0,.1);
    border-radius: 3px;
    
}
.login input.error {
    border: 1px dashed #ff7777;
}
.login .captcha {
    padding: 10px;
    border: solid 1px #a1a1a1;
    border-top: none;
    background-color: #FFF;
}
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0px 8px;
    border: 1px solid transparent;
    border-radius: 4px;
    min-width: 30px;
    min-height: 30px;
    cursor: pointer;
    text-align: center;
}
.btn[disabled] {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn:active {
    box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, .5);
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}
.btn-blue {
    color: #fff;
    background-color: #0064cd;
    background-repeat: repeat-x;
    background-image: -khtml-gradient(linear,left top,left bottom,from(#049cdb),to(#0064cd));
    background-image: -moz-linear-gradient(top,#049cdb,#0064cd);
    background-image: -ms-linear-gradient(top,#049cdb,#0064cd);
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#049cdb),color-stop(100%,#0064cd));
    background-image: -webkit-linear-gradient(top,#049cdb,#0064cd);
    background-image: -o-linear-gradient(top,#049cdb,#0064cd);
    background-image: linear-gradient(top,#049cdb,#0064cd);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb',endColorstr='#0064cd',GradientType=0);
    text-shadow: 0 -1px 0 rgb(0 0 0 / 25%);
    border-color: #0064cd #0064cd #003f81;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
}
.btn-blue:hover, .btn-blue:active {
    color: #fff;
    background-color: #2f4475;
    border-color: #2f4475;
}
.btn-light {
    color: #3f5485;
    background-color: #f2f2f2;
    border-color: #ececec;
}
.btn-light:hover, .btn-light:active {
    color: #fff;
    background-color: #3f5485;
    border-color: #3f5485;
}
.btn-white {
    color: #333;
    background-color: #fff;
    border-color: #D5D5D6;
}
.btn-white:hover, .btn-white:active {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
.btn .scoop-micon {
    display: flex;
    align-items: center;
}
.btn .scoop-mtext {
    margin-left: 5px;
}
div.error {
    color: red;
}
.footer {
    text-align: center;
    padding: 20px 10px;
    background: #fff;
    border-top: 1px solid #e6e6e6;
}
.loading {
    position: relative;
    min-height: 60px;
}
.loading:before {
    content: '';
    position: absolute;
    left: 0;
    background-color: rgba(255, 255, 255, .3) ;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}
.loading:after {
    content: '';
    height: 30px;
    width: 30px;
    border: solid 3px transparent;
    position: absolute;
    left: 0;
    right: 0;
    top:0;
    bottom:0;
    margin: auto;   
    border-radius: 50%;
    -webkit-animation: loading-spin 1s infinite linear;
    animation: loading-spin 1s infinite linear;
    border-bottom-color: #FDA828;
}
@-webkit-keyframes loading-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes loading-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}