.auth-section {
    box-shadow: 0 15px 80px var(--site_main_color);
}

.auth-section .left-box {
    text-align: center;
    background-image: url("../images/auth_bg_image.png");
    background-size: cover;
    padding: 40px 50px;
}

.auth-section .left-box .top-box img {
    display: block;
    height: 50px;
    margin-inline: auto;
    margin-bottom: 30px;
}

.auth-section .left-box .top-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.auth-section .left-box .top-box h3 a {
color: var(--site_fourth_color);
    border-bottom: 1px solid var(--site_fourth_color);
    display: inline-block;
}

.auth-section .right-box {
    padding: 40px 50px;
}

.auth-section .right-box .top-box img {
    display: block;
    height: 50px;
    margin-inline: auto;
    margin-bottom: 30px;
}

.auth-section .right-box .top-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.auth-section .right-box .bottom-box form .form-control {
    min-height: 50px;
    background-color: var(--site_third_color);
    border-radius: 0;
    border: none;
    color: var(--site_fifth_color);
}

.auth-section .right-box .bottom-box form .form-control:-webkit-autofill,
.auth-section .right-box .bottom-box form .form-control:-webkit-autofill:hover,
.auth-section .right-box .bottom-box form .form-control:-webkit-autofill:focus,
.auth-section .right-box .bottom-box form .form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--site_third_color) inset !important;
    -webkit-text-fill-color: var(--site_fifth_color) !important;
    border: none;
    border-radius: 0;
}

.auth-section .right-box .bottom-box form .form-control:focus {
box-shadow: none;
}

.auth-section .right-box .bottom-box form label {
    color: var(--site_fifth_color);
    font-weight: bold;
}

.auth-section .right-box .bottom-box form .form-check {
    display: inline-flex;
    align-items: center;
}

.auth-section .right-box .bottom-box form .form-check .form-check-input {
    width: 20px;
    height: 20px;
}

.auth-section .right-box .bottom-box form .form-check .form-check-label {
    font-weight: 700;
    line-height: 1;
}

.auth-section .right-box .bottom-box form .form-check .form-check-input:checked {
    background-color: var(--site_fourth_color);
    border-color: var(--site_fourth_color);
}

.auth-section .right-box .bottom-box form .btn-link {
    color: var(--site_fourth_color);
}

.auth-section .right-box .bottom-box .submit-btn {
    background-image: url("../images/auth_btn_bg_image.png"), linear-gradient(to right, var(--site_main_color), var(--site_third_color), var(--site_main_color));
    border: none;
    color: var(--site_text_color);
    padding: 14px 50px;
    font-size: 14px;
    background-size: 100% 100%;
    text-transform: uppercase;
    border-radius: 0;
}

.auth-section .right-box .bottom-box .submit-btn:hover {
    background-image: url("../images/auth_btn_bg_image.png"), linear-gradient(to right, var(--site_third_color), var(--site_main_color), var(--site_third_color));
}


@media (min-width: 992px) {
    .auth-section .left-box .bottom-box img {
        max-width: 400px !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .auth-section .left-box .bottom-box,
    .auth-section .right-box {
        width: 80%;
        margin-inline: auto;
    }
}


@media (max-width: 575.98px) {
    .auth-section .left-box ,
    .auth-section .right-box {
        padding: 40px 20px;
    }
}



