
        /* =========================================================
           RESET
        ========================================================= */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        /* =========================================================
           BODY
        ========================================================= */

        body {
            min-height: 100vh;

            font-family:
                "Segoe UI",
                Arial,
                Helvetica,
                sans-serif;

            background:
                linear-gradient(
                    115deg,
                    #123b9f 0%,
                    #173c9b 35%,
                    #4e426d 62%,
                    #bd4c20 100%
                );

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 36px;
        }
        
        /* =========================================================
   CAPTCHA
========================================================= */

.captcha-group {
    margin-bottom: 24px;
}


.captcha-label-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 10px;
}


.captcha-label {

    font-size: 19px;

    font-weight: 700;

    color: #172033;
}


.captcha-hint {

    font-size: 12px;

    color: #94a3b8;

    font-weight: 500;
}


/* CAPTCHA MAIN CARD */

.captcha-card {

    position: relative;

    width: 100%;

    height: 82px;

    overflow: hidden;

    border-radius: 13px;

    border: 1px solid #dfe5ee;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #eef3fa
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 10px 14px;

    margin-bottom: 11px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.8);
}


/* Decorative background */

.captcha-card::before {

    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    left: -80px;
    top: -105px;

    background:
        rgba(23, 64, 160, 0.055);
}


.captcha-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    right: -80px;
    bottom: -110px;

    background:
        rgba(255, 105, 0, 0.055);
}


/* CAPTCHA characters */

.captcha-code {

    position: relative;

    z-index: 2;

    flex: 1;

    text-align: center;

    user-select: none;

    font-family:
        "Courier New",
        monospace;

    font-size: 29px;

    font-weight: 900;

    letter-spacing: 9px;

    color: #173f9f;

    text-shadow:
        2px 1px 0 #ff8a2a,
        -1px 0 0 rgba(23,63,159,0.15);

    transform: rotate(-1deg);

    white-space: nowrap;
}


/* Decorative CAPTCHA lines */

.captcha-line {

    position: absolute;

    z-index: 1;

    height: 2px;

    border-radius: 10px;

    opacity: 0.45;
}


.captcha-line.one {

    width: 80%;

    left: 7%;

    top: 27px;

    background:
        linear-gradient(
            90deg,
            #ff6b00,
            #173f9f
        );

    transform: rotate(5deg);
}


.captcha-line.two {

    width: 72%;

    left: 13%;

    bottom: 26px;

    background:
        linear-gradient(
            90deg,
            #173f9f,
            #ff6b00
        );

    transform: rotate(-4deg);
}


/* CAPTCHA refresh button */

.captcha-refresh {

    position: relative;

    z-index: 5;

    width: 43px;

    height: 43px;

    flex: 0 0 43px;

    border: none;

    border-radius: 10px;

    background: #ffffff;

    color: #1742a0;

    font-size: 21px;

    cursor: pointer;

    box-shadow:
        0 3px 10px rgba(15, 23, 42, 0.10);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.captcha-refresh:hover {

    background: #1742a0;

    color: #ffffff;

    transform: rotate(180deg);
}


/* CAPTCHA input */

.captcha-input {

    width: 100%;

    height: 58px;

    border: 1px solid #dce2eb;

    border-radius: 10px;

    padding: 0 17px;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #273244;

    background: #ffffff;

    outline: none;

    transition: 0.2s ease;

    text-transform: uppercase;
}


.captcha-input::placeholder {

    color: #9aa5b5;

    letter-spacing: 0;
}


.captcha-input:focus {

    border-color: #ff7414;

    box-shadow:
        0 0 0 3px
        rgba(255, 116, 20, 0.10);
}


      

        /* =========================================================
           LEFT PANEL
        ========================================================= */

        .left-panel {

            position: relative;

            padding: 85px 62px;

            color: #ffffff;

            background:
                linear-gradient(
                    145deg,
                    #173e9f 0%,
                    #193c98 55%,
                    #1c368e 100%
                );

            overflow: hidden;
        }


        /* Decorative circles */

        .left-panel::before {

            content: "";

            position: absolute;

            width: 330px;
            height: 330px;

            top: -105px;
            left: -85px;

            border-radius: 50%;

            background:
                rgba(255, 255, 255, 0.055);
        }


        .left-panel::after {

            content: "";

            position: absolute;

            width: 280px;
            height: 280px;

            right: -90px;
            bottom: -135px;

            border-radius: 50%;

            background:
                rgba(255, 166, 0, 0.12);
        }


        .left-content {

            position: relative;

            z-index: 2;

            height: 100%;

            display: flex;

            flex-direction: column;

            justify-content: flex-start;
        }


        /* =========================================================
           TRUST LOGO
        ========================================================= */

        .trust-logo {

            width: 105px;
            height: 105px;

            object-fit: contain;

            margin-bottom: 48px;

            filter:
                drop-shadow(
                    0 5px 10px
                    rgba(0, 0, 0, 0.15)
                );
        }


        /* =========================================================
           LEFT TITLES
        ========================================================= */

        .left-title {

            font-size: 43px;

            line-height: 1.15;

            font-weight: 800;

            letter-spacing: -1px;

            margin-bottom: 10px;
        }


        .left-subtitle {

            font-size: 25px;

            font-weight: 600;

            color: #ffbd75;

            margin-bottom: 32px;
        }


        .left-description {

            max-width: 600px;

            font-size: 19px;

            line-height: 1.8;

            color: rgba(255, 255, 255, 0.96);

            margin-bottom: 50px;
        }


        /* =========================================================
           FEATURES
        ========================================================= */

        .features {

            display: flex;

            flex-direction: column;

            gap: 22px;
        }


        .feature {

            display: flex;

            align-items: center;

            gap: 22px;
        }


        .feature-icon {

            width: 56px;
            height: 56px;

            flex: 0 0 56px;

            border-radius: 50%;

            display: flex;

            align-items: center;
            justify-content: center;

            background:
                rgba(255, 255, 255, 0.11);

            color: #ffc15c;

            font-size: 25px;

            border:
                1px solid
                rgba(255, 255, 255, 0.04);
        }


        .feature-text {

            font-size: 18px;

            font-weight: 700;

            color: #ffffff;
        }


        /* =========================================================
           RIGHT PANEL
        ========================================================= */

        .right-panel {

            background: #ffffff;

            padding: 65px 68px 35px;

            display: flex;

            flex-direction: column;

            text-align: center;
        }


        /* =========================================================
           RIGHT LOGO
        ========================================================= */

        .right-logo {

            width: 105px;
            height: 65px;

            object-fit: contain;

            margin: 0 auto 18px;
        }


        /* =========================================================
           RIGHT HEADING
        ========================================================= */

        .right-title {

            color: #123d9e;

            font-size: 36px;

            font-weight: 800;

            margin-bottom: 8px;
        }


        .right-subtitle {

            color: #6b7280;

            font-size: 20px;

            margin-bottom: 38px;
        }


        /* =========================================================
           FORM
        ========================================================= */

        .login-form {

            width: 100%;

            text-align: left;
        }


        .form-group {

            margin-bottom: 22px;
        }


        .form-label {

            display: block;

            font-size: 19px;

            font-weight: 700;

            color: #172033;

            margin-bottom: 10px;
        }


        /* =========================================================
           INPUT WRAPPER
        ========================================================= */

        .input-wrapper {

            position: relative;

            display: flex;

            align-items: center;

            width: 100%;

            height: 67px;
        }


        .input-icon {

            width: 64px;
            height: 67px;

            flex: 0 0 64px;

            display: flex;

            align-items: center;
            justify-content: center;

            background: #f1f4f9;

            color: #12409f;

            border-radius:
                12px 0 0 12px;

            font-size: 21px;
        }


        .input-wrapper input {

            width: 100%;
            height: 67px;

            border: none;

            border-top:
                1px solid #e2e6ed;

            border-right:
                1px solid #e2e6ed;

            border-bottom:
                1px solid #e2e6ed;

            border-radius:
                0 10px 10px 0;

            padding:
                0 20px;

            color: #273244;

            background: #ffffff;

            font-size: 17px;

            outline: none;

            transition: 0.2s ease;
        }


        .input-wrapper input:focus {

            border-top-color: #ff7a18;

            border-right-color: #ff7a18;

            border-bottom-color: #ff7a18;

            box-shadow:
                0 0 0 1px
                rgba(255, 122, 24, 0.12);
        }


        .input-wrapper:focus-within .input-icon {

            color: #ffffff;

            background:
                linear-gradient(
                    135deg,
                    #1741a0,
                    #244fae
                );
        }


        /* =========================================================
           PASSWORD EYE
        ========================================================= */

        .password-eye {

            position: absolute;

            right: 17px;

            top: 50%;

            transform: translateY(-50%);

            color: #728096;

            cursor: pointer;

            font-size: 21px;

            user-select: none;
        }


        /* =========================================================
           OPTIONS
        ========================================================= */

        .login-options {

            display: flex;

            align-items: center;

            justify-content: space-between;

            margin-top: 4px;

            margin-bottom: 35px;

            font-size: 17px;
        }


        .remember {

            display: flex;

            align-items: center;

            gap: 10px;

            color: #303846;

            cursor: pointer;
        }


        .remember input {

            appearance: none;

            width: 21px;
            height: 21px;

            border:
                1px solid #d5dbe5;

            border-radius: 5px;

            background: #ffffff;

            cursor: pointer;

            position: relative;
        }


        .remember input:checked {

            background: #1743a2;

            border-color: #1743a2;
        }


        .remember input:checked::after {

            content: "✓";

            position: absolute;

            left: 4px;
            top: -1px;

            color: #ffffff;

            font-size: 16px;

            font-weight: bold;
        }


        .help-link {

            color: #123e9f;

            font-weight: 700;

            text-decoration: none;

            cursor: pointer;
        }


        .help-link:hover {

            text-decoration: underline;
        }


        /* =========================================================
           LOGIN BUTTON
        ========================================================= */

        .login-button {

            width: 100%;

            height: 67px;

            border: none;

            border-radius: 14px;

            background:
                linear-gradient(
                    100deg,
                    #ff6900,
                    #f56700
                );

            color: #ffffff;

            font-size: 21px;

            font-weight: 800;

            cursor: pointer;

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 15px;

            box-shadow:
                0 8px 18px
                rgba(245, 102, 0, 0.18);

            transition:
                transform 0.2s ease,
                box-shadow 0.2s ease;
        }


        .login-button:hover {

            transform: translateY(-2px);

            box-shadow:
                0 12px 25px
                rgba(245, 102, 0, 0.27);
        }


        .login-button:active {

            transform: translateY(0);
        }


        /* =========================================================
           ERROR
        ========================================================= */

        .error-message {

            background: #fff1f2;

            color: #b42318;

            border:
                1px solid #fecdd3;

            padding: 13px 16px;

            border-radius: 9px;

            margin-bottom: 22px;

            font-size: 14px;

            text-align: left;
        }


        /* =========================================================
           FOOTER
        ========================================================= */

        .footer {

            margin-top: auto;

            padding-top: 28px;

            border-top:
                1px solid #eeeeee;

            text-align: center;

            color: #64748b;
        }


        .copyright {

            font-size: 16px;

            font-weight: 600;

            margin-bottom: 27px;
        }


        .developer-text {

            font-size: 16px;

            margin-bottom: 27px;
        }


        .developer-button {

            display: inline-flex;

            align-items: center;
            justify-content: center;

            min-width: 233px;

            height: 54px;

            padding: 0 30px;

            border-radius: 12px;

            background:
                linear-gradient(
                    100deg,
                    #1b40a1,
                    #f56505
                );

            color: #ffffff;

            text-decoration: none;

            font-size: 17px;

            font-weight: 800;

            transition: 0.2s ease;
        }


        .developer-button:hover {

            transform: translateY(-2px);

            box-shadow:
                0 8px 18px
                rgba(30, 64, 175, 0.2);
        }


        /* =========================================================
           MOBILE
        ========================================================= */

        @media (max-width: 1050px) {

            body {

                padding: 20px;
            }


            .login-container {

                min-height: auto;

                grid-template-columns: 1fr;
            }


            .left-panel {

                padding: 50px 40px;
            }


            .left-content {

                align-items: center;

                text-align: center;
            }


            .left-description {

                max-width: 700px;
            }


            .features {

                width: 100%;

                max-width: 500px;

                text-align: left;
            }


            .right-panel {

                padding: 45px 40px 30px;
            }
        }


        @media (max-width: 600px) {

            body {

                padding: 0;

                display: block;

                background: #ffffff;
            }


            .login-container {

                min-height: 100vh;

                border-radius: 0;

                box-shadow: none;
            }


            .left-panel {

                padding: 45px 25px 40px;
            }


            .trust-logo {

                width: 85px;
                height: 85px;

                margin-bottom: 28px;
            }


            .left-title {

                font-size: 32px;
            }


            .left-subtitle {

                font-size: 20px;
            }


            .left-description {

                font-size: 16px;

                line-height: 1.6;

                margin-bottom: 35px;
            }


            .feature-icon {

                width: 48px;
                height: 48px;

                flex-basis: 48px;
            }


            .feature-text {

                font-size: 16px;
            }


            .right-panel {

                padding: 40px 22px 25px;
            }


            .right-title {

                font-size: 30px;
            }


            .right-subtitle {

                font-size: 17px;

                margin-bottom: 30px;
            }


            .form-label {

                font-size: 17px;
            }


            .input-wrapper,
            .input-wrapper input {

                height: 60px;
            }


            .input-icon {

                width: 56px;
                height: 60px;

                flex-basis: 56px;
            }


            .login-options {

                font-size: 15px;
            }


            .login-button {

                height: 60px;

                font-size: 18px;
            }
        }
        
/* =========================================================
   DESKTOP - FIT ENTIRE LOGIN PAGE IN 100% VIEW
========================================================= */

html {
    min-height: 100%;
}


body {
    min-height: 100vh;
    height: 100vh;

    padding: 20px;

    overflow: hidden;
}


/* =========================================================
   LOGIN CONTAINER
========================================================= */

.login-container {

    width: 100%;

    max-width: 1345px;

    /*
     * Always fit inside the browser viewport.
     */
    height: calc(100vh - 40px);

    min-height: 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-radius: 25px;

    overflow: hidden;
}


/* =========================================================
   LEFT PANEL
========================================================= */

.left-panel {

    padding:
        clamp(35px, 5vh, 70px)
        clamp(35px, 4vw, 62px);
}


.trust-logo {

    width: clamp(75px, 10vh, 105px);

    height: clamp(75px, 10vh, 105px);

    margin-bottom:
        clamp(22px, 4vh, 42px);
}


.left-title {

    font-size:
        clamp(32px, 3vw, 43px);

    margin-bottom: 7px;
}


.left-subtitle {

    font-size:
        clamp(20px, 2vw, 25px);

    margin-bottom:
        clamp(18px, 3vh, 28px);
}


.left-description {

    font-size:
        clamp(15px, 1.35vw, 18px);

    line-height: 1.55;

    margin-bottom:
        clamp(25px, 4vh, 40px);
}


.features {

    gap:
        clamp(12px, 2vh, 20px);
}


.feature {

    gap: 18px;
}


.feature-icon {

    width:
        clamp(45px, 6vh, 56px);

    height:
        clamp(45px, 6vh, 56px);

    flex-basis:
        clamp(45px, 6vh, 56px);

    font-size: 22px;
}


.feature-text {

    font-size:
        clamp(15px, 1.3vw, 18px);
}


/* =========================================================
   RIGHT PANEL
========================================================= */

.right-panel {

    padding:
        clamp(28px, 4vh, 55px)
        clamp(35px, 4vw, 60px)
        20px;

    min-height: 0;
}


/* =========================================================
   RIGHT LOGO
========================================================= */

.right-logo {

    width: clamp(70px, 9vh, 95px);

    height: clamp(45px, 6vh, 60px);

    margin-bottom:
        clamp(5px, 1vh, 12px);
}


/* =========================================================
   RIGHT TITLE
========================================================= */

.right-title {

    font-size:
        clamp(28px, 3vw, 36px);

    margin-bottom: 4px;
}


.right-subtitle {

    font-size:
        clamp(16px, 1.5vw, 20px);

    margin-bottom:
        clamp(18px, 3vh, 30px);
}


/* =========================================================
   FORM
========================================================= */

.form-group {

    margin-bottom:
        clamp(12px, 2vh, 18px);
}


.form-label {

    font-size:
        clamp(16px, 1.4vw, 19px);

    margin-bottom: 6px;
}


.input-wrapper {

    height:
        clamp(52px, 7vh, 62px);
}


.input-icon {

    width:
        clamp(52px, 6vh, 62px);

    height:
        clamp(52px, 7vh, 62px);

    flex-basis:
        clamp(52px, 6vh, 62px);
}


.input-wrapper input {

    height:
        clamp(52px, 7vh, 62px);

    font-size:
        clamp(15px, 1.25vw, 17px);
}


/* =========================================================
   CAPTCHA
========================================================= */

.captcha-group {

    margin-bottom:
        clamp(12px, 2vh, 18px);
}


.captcha-label-row {

    margin-bottom: 6px;
}


.captcha-label {

    font-size:
        clamp(16px, 1.4vw, 18px);
}


.captcha-hint {

    font-size: 11px;
}


.captcha-card {

    height:
        clamp(58px, 8vh, 72px);

    margin-bottom: 8px;

    padding: 7px 12px;
}


.captcha-code {

    font-size:
        clamp(23px, 2.3vw, 29px);

    letter-spacing:
        clamp(5px, 0.6vw, 9px);
}


.captcha-refresh {

    width: 38px;
    height: 38px;

    flex-basis: 38px;

    font-size: 19px;
}


.captcha-input {

    height:
        clamp(48px, 6vh, 55px);

    font-size: 15px;
}


/* =========================================================
   OPTIONS
========================================================= */

.login-options {

    margin-top: 2px;

    margin-bottom:
        clamp(15px, 2.5vh, 25px);

    font-size:
        clamp(14px, 1.3vw, 17px);
}


.remember input {

    width: 19px;
    height: 19px;
}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.login-button {

    height:
        clamp(52px, 7vh, 62px);

    border-radius: 12px;

    font-size:
        clamp(17px, 1.5vw, 20px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding-top:
        clamp(15px, 2.5vh, 24px);
}


.copyright {

    font-size:
        clamp(13px, 1.2vw, 16px);

    margin-bottom:
        clamp(12px, 2vh, 20px);
}


.developer-text {

    font-size:
        clamp(13px, 1.2vw, 16px);

    margin-bottom:
        clamp(12px, 2vh, 20px);
}


.developer-button {

    min-width: 210px;

    height:
        clamp(42px, 6vh, 52px);

    font-size:
        clamp(14px, 1.3vw, 17px);
}


/* =========================================================
   SHORT DESKTOP SCREENS
   Example: 1366 x 768
========================================================= */

@media (min-width: 1051px) and (max-height: 850px) {

    body {
        padding: 15px;
    }


    .login-container {

        height: calc(100vh - 30px);

        border-radius: 20px;
    }


    .left-panel {

        padding:
            30px
            48px;
    }


    .right-panel {

        padding:
            25px
            48px
            15px;
    }


    .trust-logo {

        margin-bottom: 20px;
    }


    .left-description {

        margin-bottom: 25px;
    }


    .features {

        gap: 12px;
    }


    .right-subtitle {

        margin-bottom: 18px;
    }


    .form-group {

        margin-bottom: 12px;
    }


    .captcha-group {

        margin-bottom: 12px;
    }


    .login-options {

        margin-bottom: 16px;
    }


    .footer {

        padding-top: 12px;
    }


    .copyright {

        margin-bottom: 10px;
    }


    .developer-text {

        margin-bottom: 10px;
    }
}


/* =========================================================
   VERY SHORT SCREENS
   Example: 1366 x 650
========================================================= */

@media (min-width: 1051px) and (max-height: 720px) {

    body {
        padding: 8px;
    }


    .login-container {

        height: calc(100vh - 16px);

        border-radius: 16px;
    }


    .left-panel {

        padding:
            20px
            35px;
    }


    .right-panel {

        padding:
            18px
            35px
            10px;
    }


    .trust-logo {

        width: 65px;
        height: 65px;

        margin-bottom: 12px;
    }


    .left-title {
        font-size: 30px;
    }


    .left-subtitle {
        font-size: 18px;
    }


    .left-description {

        font-size: 14px;

        margin-bottom: 16px;
    }


    .features {

        gap: 7px;
    }


    .feature-icon {

        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 17px;
    }


    .feature-text {

        font-size: 14px;
    }


    .right-logo {

        width: 65px;
        height: 38px;

        margin-bottom: 3px;
    }


    .right-title {
        font-size: 26px;
    }


    .right-subtitle {

        font-size: 14px;

        margin-bottom: 10px;
    }


    .form-group {

        margin-bottom: 8px;
    }


    .form-label {

        font-size: 14px;

        margin-bottom: 3px;
    }


    .input-wrapper,
    .input-wrapper input {

        height: 45px;
    }


    .input-icon {

        width: 45px;
        height: 45px;

        flex-basis: 45px;
    }


    .captcha-card {

        height: 52px;
    }


    .captcha-input {

        height: 42px;
    }


    .captcha-group {

        margin-bottom: 8px;
    }


    .login-options {

        margin-bottom: 10px;

        font-size: 13px;
    }


    .login-button {

        height: 46px;

        font-size: 16px;
    }


    .footer {

        padding-top: 7px;
    }


    .copyright,
    .developer-text {

        margin-bottom: 5px;

        font-size: 12px;
    }


    .developer-button {

        height: 36px;

        min-width: 170px;

        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1050px) {

    html,
    body {

        height: auto;

        min-height: 100%;
    }


    body {

        padding: 20px;

        overflow: visible;
    }


    .login-container {

        height: auto;

        min-height: auto;

        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    body {

        padding: 0;

        display: block;

        background: #ffffff;
    }


    .login-container {

        min-height: 100vh;

        height: auto;

        border-radius: 0;

        box-shadow: none;
    }
}

/* =========================================================
   RESPONSIVE ADMIN LOGIN
   Desktop + Tablet + Mobile
========================================================= */


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .login-container {
        max-width: 1345px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1050px) {

    html,
    body {
        width: 100%;
        min-height: 100%;
    }

  

    

    /* -----------------------------------------
       LEFT BRANDING
    ----------------------------------------- */

    .left-panel {

        padding: 45px 40px 40px;

        min-height: auto;
    }


    .left-content {

        height: auto;

        align-items: center;

        text-align: center;
    }


    .trust-logo {

        width: 90px;
        height: 90px;

        margin-bottom: 25px;
    }


    .left-title {

        font-size: 36px;

        letter-spacing: -0.5px;
    }


    .left-subtitle {

        font-size: 21px;

        margin-bottom: 20px;
    }


    .left-description {

        max-width: 650px;

        font-size: 16px;

        line-height: 1.65;

        margin-bottom: 30px;
    }


    /* -----------------------------------------
       FEATURES
    ----------------------------------------- */

    .features {

        width: 100%;

        max-width: 520px;

        gap: 14px;
    }


    .feature {

        gap: 16px;

        text-align: left;
    }


    .feature-icon {

        width: 48px;
        height: 48px;

        flex: 0 0 48px;

        font-size: 20px;
    }


    .feature-text {

        font-size: 16px;
    }


    /* -----------------------------------------
       RIGHT PANEL
    ----------------------------------------- */

    .right-panel {

        width: 100%;

        padding: 45px 40px 30px;

        min-height: 0;
    }


    .right-title {

        font-size: 32px;
    }


    .right-subtitle {

        font-size: 18px;

        margin-bottom: 28px;
    }


    /* -----------------------------------------
       FORM
    ----------------------------------------- */

    .form-label {

        font-size: 17px;
    }


    .input-wrapper,
    .input-wrapper input {

        height: 60px;
    }


    .input-icon {

        width: 56px;
        height: 60px;

        flex-basis: 56px;
    }


    .input-wrapper input {

        font-size: 16px;

        padding: 0 16px;
    }


    /* -----------------------------------------
       CAPTCHA
    ----------------------------------------- */

    .captcha-card {

        height: 70px;
    }


    .captcha-code {

        font-size: 27px;

        letter-spacing: 7px;
    }


    .captcha-input {

        height: 56px;

        font-size: 16px;
    }


    /* -----------------------------------------
       LOGIN
    ----------------------------------------- */

    .login-options {

        font-size: 16px;

        margin-bottom: 24px;
    }


    .login-button {

        height: 60px;

        font-size: 19px;
    }


    /* -----------------------------------------
       FOOTER
    ----------------------------------------- */

    .footer {

        margin-top: 30px;
    }
}


/* =========================================================
   MOBILE
   <= 600px
========================================================= */

@media (max-width: 600px) {

    html {

        width: 100%;

        min-height: 100%;

        background: #ffffff;
    }


    body {

        width: 100%;

        min-height: 100vh;
        min-height: 100dvh;

        height: auto;

        margin: 0;

        padding: 0;

        display: block;

        background: #ffffff;

        overflow-x: hidden;

        overflow-y: auto;

        -webkit-overflow-scrolling: touch;
    }


    /* =====================================================
       MAIN CONTAINER
    ===================================================== */

    .login-container {

        width: 100%;

        max-width: none;

        min-height: 100vh;
        min-height: 100dvh;

        height: auto;

        display: flex;

        flex-direction: column;

        border-radius: 0;

        overflow: visible;

        box-shadow: none;

        background: #ffffff;
    }


    /* =====================================================
       MOBILE BRANDING HEADER
    ===================================================== */

    .left-panel {

        width: 100%;

        padding: 28px 20px 25px;

        min-height: 0;

        flex: none;

        border-radius: 0;

        text-align: center;
    }


    .left-panel::before {

        width: 210px;
        height: 210px;

        top: -100px;
        left: -70px;
    }


    .left-panel::after {

        width: 170px;
        height: 170px;

        right: -70px;
        bottom: -90px;
    }


    .left-content {

        height: auto;

        align-items: center;

        justify-content: center;

        text-align: center;
    }


    /* =====================================================
       MOBILE LOGO
    ===================================================== */

    .trust-logo {

        width: 70px;
        height: 70px;

        margin-bottom: 14px;
    }


    /* =====================================================
       MOBILE BRAND TITLE
    ===================================================== */

    .left-title {

        font-size: 27px;

        line-height: 1.15;

        letter-spacing: -0.4px;

        margin-bottom: 5px;
    }


    .left-subtitle {

        font-size: 16px;

        line-height: 1.3;

        margin-bottom: 10px;
    }


    .left-description {

        max-width: 390px;

        font-size: 13px;

        line-height: 1.5;

        margin-bottom: 18px;

        color: rgba(255,255,255,0.9);
    }


    /* =====================================================
       MOBILE FEATURES
    ===================================================== */

    .features {

        width: 100%;

        max-width: 400px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 9px 10px;
    }


    .feature {

        gap: 8px;

        min-width: 0;

        padding: 5px 2px;
    }


    .feature-icon {

        width: 34px;
        height: 34px;

        flex: 0 0 34px;

        font-size: 15px;
    }


    .feature-text {

        font-size: 12px;

        line-height: 1.2;

        white-space: normal;
    }


    /* =====================================================
       MOBILE RIGHT PANEL
    ===================================================== */

    .right-panel {

        width: 100%;

        padding: 30px 20px 25px;

        display: flex;

        flex-direction: column;

        text-align: center;

        min-height: 0;
    }


    /* =====================================================
       LOGIN TITLE
    ===================================================== */

    .right-title {

        font-size: 26px;

        line-height: 1.2;

        margin-bottom: 5px;
    }


    .right-subtitle {

        font-size: 15px;

        line-height: 1.4;

        margin-bottom: 25px;
    }


    /* =====================================================
       ERROR
    ===================================================== */

    .error-message {

        padding: 11px 13px;

        margin-bottom: 16px;

        font-size: 13px;

        border-radius: 8px;
    }


    /* =====================================================
       FORM
    ===================================================== */

    .login-form {

        width: 100%;
    }


    .form-group {

        margin-bottom: 18px;
    }


    .form-label {

        font-size: 16px;

        margin-bottom: 7px;
    }


    /* =====================================================
       INPUTS
    ===================================================== */

    .input-wrapper {

        width: 100%;

        height: 58px;
    }


    .input-icon {

        width: 54px;
        height: 58px;

        flex: 0 0 54px;

        border-radius: 10px 0 0 10px;

        font-size: 19px;
    }


    .input-wrapper input {

        width: 100%;

        height: 58px;

        font-size: 16px;

        padding: 0 15px;

        border-radius: 0 10px 10px 0;

        /*
         * Prevent iPhone Safari from zooming
         * when focusing inputs.
         */
        font-size: 16px;
    }


    /* =====================================================
       PASSWORD EYE
    ===================================================== */

    .password-eye {

        right: 15px;

        width: 40px;
        height: 40px;

        display: flex;

        align-items: center;
        justify-content: center;

        font-size: 19px;
    }


    /* =====================================================
       CAPTCHA
    ===================================================== */

    .captcha-group {

        width: 100%;

        margin-bottom: 18px;
    }


    .captcha-label-row {

        margin-bottom: 7px;

        gap: 8px;
    }


    .captcha-label {

        font-size: 16px;
    }


    .captcha-hint {

        font-size: 10px;

        white-space: nowrap;
    }


    .captcha-card {

        width: 100%;

        height: 64px;

        border-radius: 11px;

        padding: 8px 9px;

        margin-bottom: 9px;
    }


    .captcha-code {

        font-size: 24px;

        letter-spacing: 5px;

        padding-left: 4px;
    }


    .captcha-refresh {

        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        border-radius: 9px;

        font-size: 20px;

        /*
         * Better touch target.
         */
        -webkit-tap-highlight-color: transparent;
    }


    .captcha-input {

        width: 100%;

        height: 54px;

        border-radius: 10px;

        padding: 0 15px;

        font-size: 16px;

        letter-spacing: 2px;
    }


    /* =====================================================
       LOGIN OPTIONS
    ===================================================== */

    .login-options {

        width: 100%;

        margin-top: 0;

        margin-bottom: 22px;

        font-size: 14px;
    }


    .remember {

        gap: 8px;

        min-height: 44px;
    }


    .remember input {

        width: 20px;
        height: 20px;

        flex: 0 0 20px;
    }


    .help-link {

        min-height: 44px;

        display: flex;

        align-items: center;
    }


    /* =====================================================
       LOGIN BUTTON
    ===================================================== */

    .login-button {

        width: 100%;

        height: 58px;

        min-height: 58px;

        border-radius: 11px;

        font-size: 18px;

        gap: 11px;

        /*
         * Prevent accidental text selection/tap behavior.
         */
        user-select: none;

        -webkit-tap-highlight-color: transparent;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {

        margin-top: 28px;

        padding-top: 20px;

        padding-bottom: 5px;
    }


    .copyright {

        font-size: 13px;

        margin-bottom: 15px;
    }


    .developer-text {

        font-size: 12px;

        line-height: 1.5;

        margin-bottom: 14px;
    }


    .developer-button {

        width: 100%;

        max-width: 230px;

        min-width: 0;

        height: 48px;

        border-radius: 10px;

        font-size: 15px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   iPhone SE / small Android
========================================================= */

@media (max-width: 380px) {

    .left-panel {

        padding:
            22px
            15px
            20px;
    }


    .trust-logo {

        width: 60px;
        height: 60px;

        margin-bottom: 10px;
    }


    .left-title {

        font-size: 24px;
    }


    .left-subtitle {

        font-size: 14px;
    }


    .left-description {

        font-size: 12px;

        margin-bottom: 14px;
    }


    .features {

        gap: 5px;
    }


    .feature-icon {

        width: 30px;
        height: 30px;

        flex-basis: 30px;
    }


    .feature-text {

        font-size: 11px;
    }


    .right-panel {

        padding:
            25px
            15px
            20px;
    }


    .right-title {

        font-size: 24px;
    }


    .right-subtitle {

        font-size: 14px;

        margin-bottom: 20px;
    }


    .captcha-code {

        font-size: 21px;

        letter-spacing: 4px;
    }


    .captcha-hint {

        display: none;
    }


    .login-options {

        font-size: 13px;
    }
}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (max-width: 900px) and (orientation: landscape) {

    body {

        overflow-y: auto;
    }


    .left-panel {

        padding:
            20px
            25px;
    }


    .trust-logo {

        width: 55px;
        height: 55px;

        margin-bottom: 8px;
    }


    .left-title {

        font-size: 25px;
    }


    .left-subtitle {

        font-size: 15px;

        margin-bottom: 8px;
    }


    .left-description {

        font-size: 12px;

        margin-bottom: 12px;
    }


    .features {

        grid-template-columns:
            repeat(4, 1fr);

        max-width: 700px;
    }


    .feature {

        justify-content: center;
    }


    .right-panel {

        padding:
            25px
            30px;
    }


    .right-title {

        font-size: 25px;
    }


    .right-subtitle {

        margin-bottom: 15px;
    }


    .form-group {

        margin-bottom: 12px;
    }


    .captcha-group {

        margin-bottom: 12px;
    }


    .captcha-card {

        height: 58px;
    }


    .captcha-input {

        height: 50px;
    }


    .login-options {

        margin-bottom: 14px;
    }


    .login-button {

        height: 52px;
    }
}