﻿* {
    /* margin: 0px; */
    /* padding: 0px; */
}

body {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    background: url('/images/background-login.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.login {
    display: flex;
    min-height: calc(100vh);
    padding: 40px 118px;
    flex-wrap: wrap;
    flex-direction: column;
}

.box-login-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', serif
}

#div-login {
    width: 100%;
    flex: 1 1 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo-header img {
    width: 50px;
    height: auto;
}

.header-info {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    line-height: 28.13px;
}

.input-captcha {
    text-transform: uppercase;
}

.header-info .name {
    font-weight: 600;
}

.header-info .sub-name {
    font-weight: 700;
    color: #2966AB;
}

.content-login {
    display: flex;
    justify-content: flex-end;
}

.form-login {
    max-width: 600px;
}

.box-form-login {
    background: #0A4485;
    padding: 22px 60px;
    border-radius: 4px;
}

.title-login {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.sub-title-login {
    font-size: 16px;
    line-height: 18.75px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.22px;
    text-transform: uppercase;
}

.box-rememberme {
    display: flex;
    margin-top: 18px;
    margin-bottom: 19px;
    justify-content: space-between;
}

.box-footer {
    margin-top: 46px;
    text-align: center;
}

.box-footer-info {
    font-size: 14px;
    font-weight: 500;
}

.title-footer {
    color: #0A4485;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.form-control {
    height: 50px;
}

.RadComboBox .rcbInput {
    height: 48px !important;
}

.RadComboBox_Bootstrap table td.rcbInputCell, .RadComboBox_Bootstrap table td.rcbArrowCell {
    border-width: 0px !important;
}

.RadComboBox table td.rcbInputCell {
    padding-left: 16px !important;
}

.form-control {
    padding-left: 16px;
}

.select2-container .select2-selection--single {
    height: 33px !important;
}

.btn-login, .btn-recover {
    border-color: #3FC2EC;
    background: #3FC2EC;
    width: 100%;
    border-radius: 4px;
    height: 50px;
    letter-spacing: 0.3px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 800;
}

    .btn-login:hover, .btn-login:active, .btn-login:active:hover, .btn-login:focus {
        background: #57bbdb !important;
        border-color: #57bbdb !important;
        outline: unset !important;
    }


.remember-me label {
    padding: 0 4px;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}


ul.rcbList > li.rcbHovered:hover {
    background: #dadada !important;
}

.rcbInputCell .rcbInput {
    border: 0px !important;
}


.input-group input {
    border-radius: 4px !important;
}

.input-group {
    width: 100%;
    position: relative;
}

.input-group-addon {
    position: absolute;
    z-index: 10;
    left: 0;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    background: transparent;
}

.input-group .form-control {
    padding-left: 50px;
}

input[type="checkbox"] {
    display: none;
}

    input[type="checkbox"] + label {
        position: relative;
        padding-left: 30px;
    }

        input[type="checkbox"] + label::before {
            content: '';
            position: absolute;
            left: 0px;
            top: 1px;
            width: 20px;
            height: 20px;
            opacity: 1;
            background: #fff;
            border-radius: 4px;
            border: 1px solid #ccc;
        }

    input[type="checkbox"]:checked + label::before {
        background: url("/images/icon-checked.png");
        border: unset;
        background-size: 100%;
    }

.captcha-control img {
    object-fit: contain;
    width: 100%;
}

.rcbSlide {
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .box-login-header {
        margin-bottom: 20px;
    }

    .login {
        padding: 20px;
    }

    .content-login {
        justify-content: center;
    }

    .header-info {
        font-size: 18px;
        line-height: 1.3;
    }

    .box-form-login {
        padding: 10px 20px;
    }
}
@media screen and (max-width: 1860px) {
    body {
        max-height: 100vh;
    }

    .login {
        flex-wrap: unset;
        flex-direction: unset;
        padding: 35px 118px 0px;
    }

    .box-login-header {
        align-items: start;
    }

    .form-control {
        height: 40px;
    }

    .RadComboBox .rcbInput {
        height: 40px !important;
    }

    .btn-login, .btn-recover {
        height: 40px;
    }

    .captcha-control img {
        height: 40px;
    }
}
