 * {
            box-sizing: border-box;
            font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            margin: 0;
            height: 100vh;
            display: flex;
        }

        /* LEFT BRAND PANEL */
        .login-left {
            width: 40%;
            background: linear-gradient(180deg, #063b2a, #0b5d3f);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            text-align: center;
        }

        .login-left img {
            width: 320px;
            margin-bottom: 20px;
        }

        .login-left h1 {
            font-size: 26px;
            margin-bottom: 10px;
        }

        .login-left p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 320px;
        }

        /* RIGHT LOGIN PANEL */
        .login-right {
            width: 60%;
            background: #f5f6f9; 
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* NOTE */
        .login-note {
            position: absolute;
            top: 30px;
            right: 30px;
            max-width: 340px;
            font-size: 14px;
            color: #b30000;
        }

        .login-note a {
            color: #b30000;
            font-weight: 600;
            text-decoration: underline;
        }

        /* LOGIN CARD */
        .login-card {
            background: #fff;
            width: 380px;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .login-card h2 {
            margin: 0 0 10px;
            font-size: 22px;
            color: #1f2937;
            text-align: center;
        }

        .login-card .subtitle {
            font-size: 14px;
            text-align: center;
            margin-bottom: 22px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #4b5563;
            margin-bottom: 6px;
        }

        .tooltip {
            cursor: help;
            font-size: 13px;
            color: #6b7280;
        }

        .form-group input {
            width: 100%;
            padding: 11px 14px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 14px;
        }

        .login-btn {
            width: 100%;
            background: #ffdf07;
            color: #000;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-size: 15px;
            cursor: pointer;
            text-transform: uppercase;
            transition: background 0.3s, opacity 0.3s;
        }

        .login-btn:hover {
            background: #063b2a;
            color: #fff;
        }

        .have_an_account {
            text-align: center;
            margin: 20px 0 10px;
            font-size: 14px;
        }

        .have_an_account p {
            margin: 3px 0;
        }

        .register_btn {
            width: 100%;
            background: #0f3860;
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-size: 15px;
            cursor: pointer;
            text-transform: uppercase;
            transition: background 0.3s, opacity 0.3s;
        }

        .register_btn:hover {
            background: #071c32;
        }


        /* OTP SCREEN */
.otp-screen {
    display: none;
}

.otp-input {
    text-align: center;
    font-size: 20px;
    letter-spacing: 6px;
}

/* VERIFY BUTTON (yellow like LOGIN) */
.verify-btn {
    width: 100%;
    background: #ffdf07;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    text-transform: uppercase;
}

/* RESEND BUTTON (blue like REGISTER) */
.resend-btn {
    width: 100%;
    margin-top: 14px;
    background: #0f3860;   /* blue */
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    text-transform: uppercase;
    opacity: 0.6;
    cursor: not-allowed;
    transition: background 0.3s, opacity 0.3s;
}

/* ACTIVE STATE */
.resend-btn.active {
    opacity: 1;
    cursor: pointer;
    background: #0f3860; /* same blue, but enabled */
}



/* Wrapper */
.info-tooltip {
    position: relative;
    display: inline-block;
}

/* Info icon */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #6b7280;
    border-radius: 50%;
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
}

/* Tooltip box */
.tooltip-box {
    position: absolute;
    bottom: 20px; /* ABOVE icon */
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: #1f2937;
    color: #fff;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;            
    transition: opacity 0.15s ease;
    z-index: 50;
}

/* Tooltip arrow */
.tooltip-box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

/* Tooltip link */
.tooltip-box a {
    color: #93c5fd;
    text-decoration: underline;
    font-weight: 500;
}

/* KEEP tooltip open when hovering icon OR tooltip */
.info-tooltip:hover .tooltip-box,
.info-tooltip:focus-within .tooltip-box {
    opacity: 1;
    visibility: visible;
}
.mobile_only_logo{display: none;}




        /* RESPONSIVE */
        @media (max-width: 900px) {
            .login-left {
                display: none;
            }
            .login-right {
                width: 100%;
            }
            .login-note {
                position: static;
                margin-bottom: 20px;
                text-align: center;
            }
            .mobile_only_logo{display: block; text-align: center;}
            .mobile_only_logo img{width: 200px; margin: 0px auto 20px;}
        }