body.login{
    background-color: #F3F3F3 !important;
    color: rgba(0, 0, 0, 0.6);
    background-size: cover;
    font-family: RobotoDraft,Roboto;
    font-size: 14px;
}
.login header {
    position: relative;
    width: 100%;
    height: 100px;
    box-shadow: rgba(0, 0, 0, 0.26) 0 2px 5px 0;
    text-align: center;
    line-height: 100px;
    background: rgb(3, 169, 245);
    top: -21px;
}

.logo-container {
    margin: 40px auto;
}

.login header label {
    font-size: 30px;
    font-weight: 300;
    color: #ffffff;
}

.help-icon {
    position: absolute;
    float: right;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.help-icon i.fa.fa-question {
    width: 20px;
    height: 20px;
    background: #7c7c7c;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    font-size: 20px;
}

/*---------  Animation  ---------*/
.main-login .photo {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgb(223, 223, 223);
    border: 13px solid rgb(223, 223, 223);
    overflow: hidden !important;
}

.main-login .photo:before {
    position: absolute;
    content: '';
    width: 35px;
    height: 35px;
    top: 0px;
    right: 20px;
    border-radius: 50%;
    background: #aaa;
    border: 2px solid #fff;
    transform: scale(0);
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -webkit-animation: user-head 0.5s 0s forwards;
    -moz-animation: user-head 0.5s 0s forwards;
    animation: user-head 0.5s 0s forwards;
}

.main-login .photo:after {
    position: absolute;
    content: '';
    width: 140px;
    height: 220px;
    top: 38px;
    right: -32px;
    border-radius: 50%;
    background: #aaa;
    border: 2px solid #fff;
    transform: translateY(36px);
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -webkit-animation: user-body 0.5s 0.3s forwards;
    -moz-animation: user-body 0.5s 0.3s forwards;
    animation: user-body 0.5s 0.3s forwards;
}

@-webkit-keyframes user-head {
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -moz-transform: scale(1);
    }
}

@-moz-keyframes user-head {
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -moz-transform: scale(1);
    }
}

@keyframes user-head {
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -moz-transform: scale(1);
    }
}

@-webkit-keyframes user-body {
    100% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
        -moz-transform: translateY(2px);
    }
}

@-moz-keyframes user-body {
    100% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
        -moz-transform: translateY(2px);
    }
}

@keyframes user-body {
    100% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
        -moz-transform: translateY(2px);
    }
}
/*--------- End Animation ----------*/
.main-login span.login-register-text{
    display: block;
    font-size: 15px;
    padding-top: 10px;
    text-align: center;
    color: rgba(0,0,0,0.6);
}
.realperson-challenge {
    display: inline-block;
    position: absolute;
    left: -164px;
}
.realperson-regen {
    color: #007dbf;
}
.help-block {
    color: #6d757d;
}
body.login .main-login{
    width: 400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 5px;
    color: #000000;
    position: relative;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.26);
}
.container-center {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

/*---------- Form -----------*/
.form-group {
    position: relative;
    margin-top: 35px;
    margin-bottom: 20px;
}

.form-control {
    display: block;
    height: 36px;
    width: 100%;
    border: none;
    border-radius: 0 !important;
    font-size: 15px;
    font-family: inherit;
    font-weight: 300;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(117, 117, 117, 0.15);
}
.form-control:focus {
    border-bottom: 2px solid rgb(3, 169, 245);
    outline: none;
    box-shadow: none;
}
.form-control:focus {
    border-bottom: 2px solid rgb(3, 169, 245);
    outline: none;
    box-shadow: none;
}

.form-highlight {
    position: absolute;
    height: 60%;
    width: 60px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.4;
}

.form-control:focus ~ .form-highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

.float-label {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 16px;
    color: #999;
    font-weight: 300;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.form-control:focus ~ .float-label, .form-control:valid ~ .float-label {
    top: -15px;
    font-size: 12px;
}
.has-error .form-control, .has-error .form-control:focus{
    box-shadow: none !important;
}
.login .alert.alert-success {
    background: #228B22;
    border-color: #228B22;
    color: #ffffff;
    padding: 20px;
    border-radius: 0px;
    width: 100%;
    position: relative;
    top: -21px;
    font-size: 15px;
}
.login .alert.alert-success a {
    color: #ffffff;
}
body.login label.checkbox-inline{
    font-size: 13px;
}
.login-footer {
    width: 100%;
    height: 30px;
    line-height: 29px;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid rgba(117, 117, 117, 0.15);
}
.login-footer a {
    color: #000;
    vertical-align: middle;
    display: block;
    text-decoration: none;
}
.padding-l-0 {
    padding-left: 0;
}

.padding-r-0 {
    padding-right: 0;
}
.form-actions button[type="submit"], .form-actions button[type="submit"]:hover {
    position: relative;
    float: right;
    font-family: inherit;
    font-weight: 100;
    font-size: 15px;
    border: 0;
    margin: -3px 0px;
    padding: 5px 15px;
    border-radius: 3px;
    cursor: pointer;
    background: rgb(3, 169, 245);
    color: #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
}
.form-group {
    position: relative;
    margin-top: 35px;
    margin-bottom: 20px;
}
.captcha-section {
    display: flex;
}
footer {
    padding-top: 20px;
    padding-bottom: 20px;
}