﻿
/* =========================================================
                   ROOT
                ========================================================== */

:root {
    --gold: #c58a3a;
    --gold-light: #e7bc79;
    --black: #080808;
    --black-light: #171717;
    --form-bg: #eeeeef;
    --input-bg: #dedee0;
    --text: #252525;
    --muted: #777777;
    --danger: #d60000;
}


/* =========================================================
                   RESET
                ========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    min-height: 100%;
}


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #191919;
}


button,
input {
    font-family: inherit;
}



/* =========================================================
                   MAIN PAGE
                   YOUR MAIN BACKGROUND IMAGE
                ========================================================== */

.registration-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('/assets/images/login-illustration.png');
    background-repeat: no-repeat;
    background-size: 100% 960px;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



    /* =========================================================
                   DARK OVERLAY
                   Keep background image visible
                ========================================================== */

    .registration-page::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .18);
        pointer-events: none;
        z-index: 1;
    }



/* =========================================================
                   MAIN CARD
                ========================================================== */

.registration-card {
    display: flex;
    z-index: 1;
    overflow: hidden;
    border-radius: 25px;
    background: transparent;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 8px 30px rgba(0, 0, 0, .30);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/* =========================================================
                   LEFT SIDE
                   430 x 680
                ========================================================== */

.login-side {
    position: relative;
    width: 430px;
    height: 680px;
    flex: 0 0 430px;
    order: 1;
    overflow: hidden;
    background-image: url('/assets/images/left_bg.png');
    background-repeat: no-repeat;
    background-size: 430px 680px;
    background-position: center center;
}



/* =========================================================
                   REMOVE OLD IMAGE
                ========================================================== */

.login-side-image {
    display: none !important;
}



/* =========================================================
                   LEFT CONTENT
                ========================================================== */

.login-side-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    padding: 34px 34px 30px;
    display: flex;
    flex-direction: column;
}



/* =========================================================
                   LANGUAGE BUTTON
                ========================================================== */

.login-language {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}


    .login-language button {
        height: 31px;
        min-width: 105px;
        padding: 0 12px;
        border: 1px solid #b8792e;
        border-radius: 7px;
        background: rgba(0, 0, 0, .12);
        color: #eeeeee;
        font-size: 11px;
        cursor: pointer;
        outline: none;
        transition: all .2s ease;
    }


        .login-language button:hover {
            background: rgba(198, 139, 60, .12);
            border-color: var(--gold-light);
        }


        .login-language button i {
            margin-left: 5px;
            font-size: 11px;
        }



/* =========================================================
                   HELLO
                ========================================================== */

.login-side-content h2 {
    margin-top: 17px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -.5px;
}


.login-side-content > p {
    margin-top: 14px;
    color: #d0d0d0;
    font-size: 12px;
    line-height: 1.5;
}


    .login-side-content > p strong {
        color: #ffffff;
        font-weight: 600;
    }



/* =========================================================
                   LEFT BOTTOM
                ========================================================== */

.login-side-bottom {
    position: relative;
    z-index: 10;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}



/* =========================================================
                   LOGO
                ========================================================== */

.side-logo {
    width: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}


    .side-logo img {
        width: 100%;
        max-height: 48px;
        object-fit: contain;
    }



/* =========================================================
                   REGISTER
                ========================================================== */

.register-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


    .register-box span {
        color: #d0d0d0;
        font-size: 12px;
    }


    .register-box a {
        color: var(--gold-light);
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: color .2s ease;
    }


        .register-box a:hover {
            color: #ffffff;
        }


        .register-box a i {
            margin-left: 4px;
            font-size: 11px;
        }



/* =========================================================
                   RIGHT FORM
                   430 x 680
                ========================================================== */

.registration-form {
    position: relative;
    width: 570px;
    height: 680px;
    flex: 0 0 570px;
    order: 2;
    padding: 70px 62px 45px;
    background: linear-gradient(137deg, #eeeeee, #dad6d2 52%, #f3f6fd);
}



/* =========================================================
                   FORM HEADING
                ========================================================== */

.registration-heading {
    margin: 0 0 38px;
    position: relative;
}


    /* Hide old heading elements */

    .registration-heading
    .registration-logo,
    .registration-heading
    .registration-small-title,
    .registration-heading
    .heading-decoration,
    .registration-heading p {
        display: none !important;
    }


    .registration-heading h1 {
        margin: 0;
        color: #111111;
        font-size: 27px;
        line-height: 1.2;
        font-weight: 400;
    }


        .registration-heading h1 span {
            display: none;
        }



/* =========================================================
                   FORM FIELD
                ========================================================== */

.registration-field {
    margin-bottom: 21px;
}


    .registration-field label {
        display: block;
        margin: 0 0 8px;
        color: #4e4e4e;
        font-size: 11px;
        line-height: 1.2;
        font-weight: 400;
    }


        .registration-field label::before {
            content: "*";
            color: var(--danger);
            margin-right: 3px;
        }



/* =========================================================
                   INPUT
                ========================================================== */

.registration-input {
    position: relative;
    width: 100%;
    height: 37px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 7px;
    background: var(--input-bg);
    transition: all .2s ease;
}


    .registration-input:focus-within {
        border-color: rgba(197, 138, 58, .50);
        box-shadow: 0 0 0 3px rgba(197, 138, 58, .08);
    }


/* =========================================================
                   INPUT ICON
                ========================================================== */

.registration-input-icon {
    display: none !important;
}


/* =========================================================
                   INPUT ELEMENT
                ========================================================== */

.registration-input input {
    width: 100%;
    height: 100%;
    padding: 0 11px;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #222222;
    font-size: 12px;
}


    .registration-input input::placeholder {
        color: #a4a4a6;
    }



/* =========================================================
                   PASSWORD TOGGLE
                ========================================================== */

.password-toggle {
    width: 38px;
    height: 100%;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: none;
    background: transparent;
    color: #777777;
    cursor: pointer;
}


    .password-toggle:hover {
        color: #333333;
    }



/* =========================================================
                   CAPTCHA
                ========================================================== */

.captcha-field {
    margin-bottom: 20px;
}


.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 7px;
}


    .captcha-wrapper
    .registration-input {
        flex: 1;
    }


.login-captcha-image {
    width: 95px;
    height: 37px;
    flex: 0 0 95px;
    object-fit: cover;
    border: 1px solid #cccccc;
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
}


.captcha-refresh-btn {
    width: 35px;
    height: 37px;
    flex: 0 0 35px;
    border: 0;
    border-radius: 6px;
    background: #333333;
    color: #ffffff;
    cursor: pointer;
    transition: all .2s ease;
}


    .captcha-refresh-btn:hover {
        background: #1f1f1f;
    }



/* =========================================================
                   ERROR MESSAGE
                ========================================================== */

.error-message {
    display: none;
    margin-top: 5px;
    color: #d32f2f;
    font-size: 13px;
}


.registration-input.field-error {
    border-color: rgba(211, 47, 47, .65);
}



/* =========================================================
                   LOGIN OPTIONS
                ========================================================== */

.login-options {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3px;
    margin-bottom: 30px;
}



/* =========================================================
                   REMEMBER CHECKBOX
                ========================================================== */

.remember-option {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    cursor: pointer;
}


    .remember-option input {
        display: none;
    }


.remember-box {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bcbcbc;
    border-radius: 3px;
    background: #f5f5f5;
}


    .remember-box i {
        display: none;
        color: #ffffff;
        font-size: 9px;
    }


.remember-option input:checked + .remember-box {
    background: #2c2c2c;
    border-color: #2c2c2c;
}


    .remember-option input:checked + .remember-box i {
        display: block;
    }


.remember-text {
    color: #333333;
    font-size: 11px;
}



/* =========================================================
                   FORGOT PASSWORD
                ========================================================== */

.forgot-password {
    color: #c27c2e;
    font-size: 11px;
    text-decoration: none;
    transition: all .2s ease;
}


    .forgot-password:hover {
        color: #965b1f;
    }



/* =========================================================
                   LOGIN BUTTON
                ========================================================== */

.registration-submit-btn {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 7px;
    background: #282828;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,.14);
    transition: all .2s ease;
}


    .registration-submit-btn:hover {
        background: #1d1d1d;
        transform: translateY(-1px);
    }


    .registration-submit-btn:active {
        transform: translateY(0);
    }


    .registration-submit-btn:disabled {
        opacity: .70;
        cursor: not-allowed;
        transform: none;
    }



/* =========================================================
                   HIDE OLD ELEMENTS
                ========================================================== */

.login-divider {
    display: none !important;
}


.login-register-text {
    display: none !important;
}


.registration-footer {
    display: none !important;
}



/* =========================================================
                   LOADER
                ========================================================== */

.registration-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(5px);
}


.registration-loader-box {
    width: 230px;
    padding: 30px;
    border-radius: 16px;
    background: #171717;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,.60);
}


.registration-loader-spinner {
    position: relative;
    width: 52px;
    height: 52px;
    margin: auto;
}


.spinner-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255,255,255,.12);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: loginSpinner 1s linear infinite;
}


.spinner-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
}


.registration-loader-title {
    margin-top: 18px;
    color: #ffffff;
    font-size: 16px;
}


.registration-loader-text {
    margin-top: 6px;
    color: #999999;
    font-size: 11px;
}


@keyframes loginSpinner {

    to {
        transform: rotate(360deg);
    }
}



/* =========================================================
                   RESPONSIVE
                ========================================================== */

@media (max-width: 900px) {




    .login-side {
        width: 50%;
        flex: 0 0 50%;
        background-size: cover;
    }


    .registration-form {
        width: 50%;
        flex: 0 0 50%;
        padding: 55px 35px 40px;
    }
}



/* =========================================================
                   TABLET / MOBILE
                ========================================================== */

@media (max-width: 650px) {

    .registration-page {
        padding: 20px 0;
        align-items: flex-start;
    }


    .registration-card {
        flex-direction: column;
        border-radius: 20px;
    }


    .login-side {
        width: 100%;
        height: 280px;
        min-height: 280px;
        flex: 0 0 280px;
        background-size: cover;
        background-position: center top;
    }


    .registration-form {
        width: 100%;
        height: auto;
        flex: 0 0 auto;
        padding: 40px 25px 40px;
    }


    .login-side-content {
        padding: 25px;
    }


        .login-side-content h2 {
            font-size: 28px;
        }
}



/* =========================================================
                   SMALL MOBILE
                ========================================================== */

@media (max-width: 400px) {




    .login-side {
        height: 250px;
        min-height: 250px;
        flex-basis: 250px;
    }


    .login-side-content {
        padding: 22px;
    }


    .registration-form {
        padding: 30px 20px 35px;
    }


    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }


    .forgot-password {
        align-self: flex-end;
    }


    .captcha-wrapper {
        flex-wrap: wrap;
    }


        .captcha-wrapper
        .registration-input {
            width: 100%;
            flex: 1 1 100%;
        }


    .login-captcha-image {
        width: calc(100% - 42px);
        flex: 1;
    }
}

/* =========================================================
           DESKTOP
        ========================================================= */

@media (min-width: 901px) {

    .registration-card {
        width: 1000px;
        height: 680px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        overflow: hidden;
        border-radius: 25px;
    }
}


/* =========================================================
           TABLET
        ========================================================= */

@media (max-width: 900px) and (min-width: 651px) {

    .registration-page {
        min-height: 100vh;
        padding: 25px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
    }


    .registration-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        max-width: 820px;
        height: auto;
        min-height: 600px;
        display: flex;
        border-radius: 22px;
        overflow: hidden;
    }


    .login-side {
        width: 45%;
        height: 620px;
        flex: 0 0 45%;
        background-size: cover;
        background-position: center;
    }


    .registration-form {
        width: 55%;
        height: 620px;
        flex: 0 0 55%;
        padding: 55px 40px;
    }
}


/* =========================================================
           MOBILE
           650px AND BELOW
        ========================================================= */

@media (max-width: 650px) {

    html,
    body {
        width: 100%;
        min-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }


    body {
        background: #f4f5f8;
    }
    /* =====================================================
               MAIN BACKGROUND
            ====================================================== */

    .registration-page {
        position: relative;
        width: 100%;
        min-height: 100vh;
        height: auto;
        padding: 0;
        margin: 0;
        display: block;
        background-image: url('/assets/images/login-illustration.png');
        background-repeat: no-repeat;
        background-size: auto 100vh;
        background-position: center top;
        overflow: visible;
    }
        /* =====================================================
               DARK OVERLAY
            ====================================================== */

        .registration-page::before {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .10);
            z-index: 1;
            pointer-events: none;
        }
    /* =====================================================
               LOGIN CARD
            ====================================================== */

    .registration-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        z-index: 10;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 100vh;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    /* =====================================================
               TOP LEFT IMAGE / HERO
            ====================================================== */

    .login-side {
        position: relative;
        width: 100%;
        height: 210px;
        min-height: 210px;
        flex: 0 0 210px;
        order: 1;
        border-radius: 0;
        overflow: hidden;
        background-image: url('/assets/images/left_bg.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    /* =====================================================
               LEFT CONTENT
            ====================================================== */

    .login-side-content {
        width: 100%;
        height: 100%;
        padding: 28px 22px 24px;
        display: flex;
        flex-direction: column;
    }
    /* =====================================================
               LANGUAGE
            ====================================================== */

    .login-language {
        position: absolute;
        top: 27px;
        right: 20px;
        width: auto;
        z-index: 5;
        display: block;
    }


        .login-language button {
            height: 30px;
            min-width: auto;
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            color: #ffffff;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 15px;
            font-weight: 400;
        }


            .login-language button:hover {
                background: transparent;
                border-color: transparent;
            }


            .login-language button i {
                margin-left: 3px;
                font-size: 14px;
            }
    /* =====================================================
               HELLO
            ====================================================== */

    .login-side-content h2 {
        margin-top: 2px;
        color: #ffffff;
        font-size: 27px;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: 0;
    }


    .login-side-content > p {
        margin-top: 22px;
        color: rgba(255,255,255,.60);
        font-size: 14px;
        line-height: 1.4;
    }


        .login-side-content > p strong {
            color: rgba(255,255,255,.75);
            font-weight: 500;
        }
    /* =====================================================
               HIDE LEFT BOTTOM ON MOBILE
               Screenshot has no logo/register here
            ====================================================== */

    .login-side-bottom {
        display: none;
    }
    /* =====================================================
               RIGHT FORM
            ====================================================== */

    .registration-form {
        position: relative;
        width: 100%;
        height: auto;
        min-height: calc(100vh - 210px);
        flex: 1 1 auto;
        order: 2;
        padding: 40px 22px 30px;
        border-radius: 30px 30px 0 0;
        margin-top: -1px;
        background: linear-gradient( 137deg, #ffffff 0%, #ffffff 55%, #f4f6fc 100% );
        box-shadow: 0 -8px 25px rgba(0,0,0,.08);
    }
    /* =====================================================
               HEADING
            ====================================================== */

    .registration-heading {
        margin: 0 0 40px;
        text-align: center;
    }


        .registration-heading h1 {
            margin: 0;
            color: #111111;
            font-family: normal;
            font-size: 25px;
            line-height: 1.2;
            font-weight: 400;
        }
    /* =====================================================
               FIELD
            ====================================================== */

    .registration-field {
        margin-bottom: 27px;
    }


        .registration-field label {
            display: block;
            margin-bottom: 10px;
            color: #444444;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 13px;
            line-height: 1.2;
            font-weight: 400;
        }


            .registration-field label::before {
                content: "*";
                color: #e00000;
                margin-right: 5px;
            }
    /* =====================================================
               INPUT
            ====================================================== */

    .registration-input {
        width: 100%;
        height: 52px;
        border: 0;
        border-radius: 11px;
        background: #f3f3f3;
        box-shadow: none;
    }


        .registration-input:focus-within {
            border-color: transparent;
            box-shadow: 0 0 0 2px rgba(197,138,58,.12);
        }


        .registration-input input {
            width: 100%;
            height: 100%;
            padding: 0 16px;
            color: #222222;
            font-size: 14px;
        }


            .registration-input input::placeholder {
                color: #b7b7b7;
                font-size: 14px;
            }
    /* =====================================================
               PASSWORD EYE
            ====================================================== */

    .password-toggle {
        width: 45px;
        flex: 0 0 45px;
        color: #8b8b8b;
    }
    /* =====================================================
               CAPTCHA

               IMPORTANT:
               Agar aapke API mein captcha mandatory hai,
               ise hide mat karein.

               Neeche default mein visible rakha gaya hai.
            ====================================================== */

    .captcha-field {
        margin-bottom: 25px;
    }


    .captcha-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 7px;
    }


        .captcha-wrapper .registration-input {
            flex: 1;
        }


    .login-captcha-image {
        width: 110px;
        height: 44px;
        flex: 0 0 110px;
        border-radius: 9px;
    }


    .captcha-refresh-btn {
        width: 42px;
        height: 52px;
        flex: 0 0 42px;
        border-radius: 9px;
    }
    /* =====================================================
               LOGIN OPTIONS
            ====================================================== */

    .login-options {
        width: 100%;
        margin-top: 0;
        margin-bottom: 28px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }


    .remember-text {
        font-size: 12px;
    }


    .forgot-password {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 14px;
        color: #7b6b62;
    }
    /* =====================================================
               LOGIN BUTTON
            ====================================================== */

    .registration-submit-btn {
        width: 100%;
        height: 47px;
        border-radius: 5px;
        background: #333333;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 14px;
        color: #e6b779;
        box-shadow: none;
    }


        .registration-submit-btn:hover {
            background: #292929;
            transform: none;
        }
    /* =====================================================
               MOBILE REGISTER AREA
            ====================================================== */

    .login-register-text {
        display: block !important;
        margin-top: 32px;
        text-align: center;
        color: #8a7770;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 14px;
    }


        .login-register-text a {
            margin-left: 8px;
            color: #111111;
            font-weight: 500;
            text-decoration: none;
        }
    /* =====================================================
               RETRIEVE PASSWORD

               If your existing HTML contains a forgot link,
               style it as screenshot.
            ====================================================== */

    .forgot-password {
        display: inline-block;
    }
    /* =====================================================
               HIDE DESKTOP FOOTER
            ====================================================== */

    .registration-footer {
        display: none !important;
    }


    .login-divider {
        display: none !important;
    }
}


/* =========================================================
           VERY SMALL MOBILE
           480px AND BELOW
        ========================================================= */

@media (max-width: 480px) {

    .login-side {
        height: 190px;
        min-height: 190px;
        flex-basis: 190px;
        background-position: center center;
    }


    .login-side-content {
        padding: 27px 20px 20px;
    }


        .login-side-content h2 {
            font-size: 26px;
        }


        .login-side-content > p {
            margin-top: 22px;
            font-size: 13px;
        }


    .login-language {
        top: 25px;
        right: 18px;
    }


        .login-language button {
            font-size: 14px;
        }


    .registration-form {
        min-height: calc(100vh - 190px);
        padding: 38px 22px 30px;
        border-radius: 28px 28px 0 0;
    }


    .registration-heading {
        margin-bottom: 38px;
    }


        .registration-heading h1 {
            font-size: 24px;
        }


    .registration-field {
        margin-bottom: 25px;
    }


        .registration-field label {
            font-size: 13px;
            margin-bottom: 9px;
        }


    .registration-input {
        height: 52px;
        border-radius: 10px;
    }


        .registration-input input {
            padding: 0 16px;
            font-size: 14px;
        }


            .registration-input input::placeholder {
                font-size: 14px;
            }


    .captcha-wrapper {
        gap: 5px;
    }


    .login-captcha-image {
        width: 110px;
        flex-basis: 110px;
    }


    .captcha-refresh-btn {
        width: 40px;
        flex-basis: 40px;
    }


    .login-options {
        margin-bottom: 25px;
    }


    .forgot-password {
        font-size: 13px;
    }


    .registration-submit-btn {
        height: 47px;
        font-size: 14px;
    }


    .login-register-text {
        margin-top: 30px;
        font-size: 13px;
    }
}


/* =========================================================
           EXTRA SMALL MOBILE
           360px AND BELOW
        ========================================================= */

@media (max-width: 360px) {

    .login-side {
        height: 175px;
        min-height: 175px;
        flex-basis: 175px;
    }


    .login-side-content {
        padding: 23px 17px;
    }


        .login-side-content h2 {
            font-size: 24px;
        }


        .login-side-content > p {
            font-size: 12px;
            margin-top: 18px;
        }


    .registration-form {
        min-height: calc(100vh - 175px);
        padding: 32px 18px 25px;
    }


    .registration-heading {
        margin-bottom: 32px;
    }


        .registration-heading h1 {
            font-size: 23px;
        }


    .registration-field {
        margin-bottom: 22px;
    }


    .registration-input {
        height: 48px;
    }


    .login-captcha-image {
        height: 48px;
    }


    .captcha-refresh-btn {
        height: 48px;
    }


    .registration-submit-btn {
        height: 46px;
    }
}



/* =========================================
   DBG MARKETS FOOTER
========================================= */

.dbg-footer {
    width: 100%;
    background: #17191d;
    color: #fff;
    font-family: Arial,Helvetica,sans-serif;
}


/* =========================================
   CONTAINER
========================================= */

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}


/* =========================================
   TOP AREA
========================================= */

.footer-top {
    padding: 42px 0 34px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 145px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}


/* =========================================
   LINKS
========================================= */

.footer-links a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 14px;
    transition: .25s;
}

    .footer-links a:hover {
        color: #ffffff;
    }


/* =========================================
   DISCLAIMER AREA
========================================= */

.footer-disclaimer {
    background: #202226;
    border-top: 1px solid rgba(255,255,255,.08);
}

.disclaimer-inner {
    padding-top: 34px;
    padding-bottom: 42px;
}


    /* =========================================
   TITLE
========================================= */

    .disclaimer-inner h4 {
        margin: 0;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.75;
        font-weight: 400;
    }


/* =========================================
   DIVIDER
========================================= */

.footer-divider {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.16);
    margin: 24px 0;
}


/* =========================================
   COMPANY GRID
========================================= */

.company-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.company-column {
    min-width: 0;
}

    .company-column p {
        margin: 0 0 18px;
        color: #d8d8d8;
        font-size: 13px;
        line-height: 1.8;
    }

    .company-column strong {
        color: #ffffff;
        font-weight: 700;
    }


/* =========================================
   LEGAL CONTENT
========================================= */

.legal-content p {
    margin: 0 0 18px;
    color: #d6d6d6;
    font-size: 13px;
    line-height: 1.85;
}

.legal-content strong {
    color: #ffffff;
    font-weight: 700;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:992px) {

    .company-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .company-column:last-child {
        grid-column: span 2;
    }
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .footer-container {
        padding: 0 18px;
    }

    .footer-top {
        padding: 30px 0 24px;
    }

    .footer-logo {
        width: 125px;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .disclaimer-inner {
        padding-top: 26px;
        padding-bottom: 30px;
    }

        .disclaimer-inner h4 {
            font-size: 13px;
            line-height: 1.7;
        }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .company-column:last-child {
        grid-column: auto;
    }

    .company-column p,
    .legal-content p {
        font-size: 12px;
        line-height: 1.75;
    }

    .footer-divider {
        margin: 20px 0;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px) {

    .footer-container {
        padding: 0 15px;
    }

    .footer-top {
        padding: 24px 0 20px;
    }

    .footer-logo {
        width: 115px;
    }

    .disclaimer-inner h4 {
        font-size: 12px;
    }

    .company-column p,
    .legal-content p {
        font-size: 11.5px;
        line-height: 1.7;
    }
}



/* =========================================
   DBG FOOTER CONTAINER
========================================= */

.dbg-footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================
   FOOTER TOP
========================================= */

.dbg-footer-top {
    width: 100%;
    padding: 35px 0;
}


/* =========================================
   BRAND ROW
========================================= */

.dbg-footer-brand {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO - LEFT
========================================= */

.dbg-footer-logo {
    width: 145px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================
   LINKS - RIGHT
========================================= */

.dbg-footer-links {
    display: flex;
    align-items: center;
}


    .dbg-footer-links a {
        color: #d9d9d9;
        font-size: 14px;
        font-weight: 400;
        text-decoration: none;
        transition: all .25s ease;
    }


        .dbg-footer-links a:hover {
            color: #ffffff;
        }


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .dbg-footer-container {
        padding: 0 16px;
    }

    .dbg-footer-top {
        padding: 25px 0;
    }

    .dbg-footer-brand {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .dbg-footer-logo {
        width: 110px;
    }

    .dbg-footer-links a {
        font-size: 12px;
        white-space: nowrap;
    }
}