.row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.row .col-6{ width: 50%; }
.bg-logo{
    position: fixed; z-index: 1; left: 0; top: 0;
    width: 100%; height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 1;
}
.cb-form{
    position: absolute; left: 0; top: 0; z-index: 2;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.divider{
    display: block;
    height: 1px; width: 100%;
    background: #ccc;
    margin: 2.5rem 0;
}

.form-group.captcha label{
    display: block;
    width: 100%;
}
.form-group.captcha img{
    display: block;
    float: left;
    width: 35%;
    cursor: pointer;
}
.form-group.captcha img.load{
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    -webkit-mask-position: center center; mask-position: center center;
    -webkit-mask-size: 100%; mask-size: 100%;
    -webkit-mask: url(/media/loader/25.svg) no-repeat  center center;
    mask-image: url(/media/loader/25.svg) no-repeat center center;
    -webkit-mask-size: 60% 60%; mask-size: 60% 60%;
}
.form-group.captcha input{ width: 65%; }
.form-group.captcha em{
    display: block;
    clear: both; float: none;
    width: 100%;
}
#auth_login_form{
    flex: none;
    display: block;
    width: 100%;
    padding: 3rem;
    background: #fff;
}
#auth_login_form .form-head{
    background: #cccccc11;
    height: 50vw;
    margin: -3rem  -3rem  0  -3rem;
    padding: 1rem 0;
    border-bottom: 1px solid #cccccc66;
}
#auth_login_form .form-head .in{
    height: 100%;
    width: 80%;
    margin: 0 auto;
    background: url(/media/logo/Infinity_pay-gorizotalniy-ru.png) no-repeat center center;
    background-size: contain;
}

#auth_login_form .form-group .form-control input{ border-radius: .3rem 0 0 .3rem; }
#auth_login_form legend{ display: none; }

#auth_login_form button.send{
    background-color: #007EC3;
    color: #fff;
    border: 1px solid #007EC3;
    text-transform: uppercase;
    transition: background linear .1s;
}
#auth_login_form button.send:focus,
#auth_login_form button.send:hover{
    background-color: #00B9F0;
    border-color: #00B9F0;
}

@media(min-width: 480px){
    #auth_login_form{
        width: 450px;
        border-radius: 1rem;
    }
    #auth_login_form .form-head{ border-radius: 1rem 1rem 0 0; }
    #auth_login_form .form-head{ height: 14rem; }
}

/* ========================================================================== */