/* ============================================================
   login.css — Login page specific styles only
   Global styles (colors, fonts, header, footer, buttons,
   form controls) are in base.css
   ============================================================ */

/* ── Split layout ──────────────────────────────────────── */
.login-main {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.login-left {
    /* width: 100%; */
    background: #fff;
    padding: 40px 50px;
    max-width: 720px;
}

/* @media (min-width: 768px) {
    .login-left  { width: 45%; }
    .login-right { width: 55%; }
} */

/* ── Login box ─────────────────────────────────────────── */
.login-box {
    width: 100%;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* ── Terms text ────────────────────────────────────────── */
.terms-text {
    font-size: 14px;
    color: #888;
}

.terms-link {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ── OTP step ──────────────────────────────────────────── */
.otp-hint {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.otp-hint strong {
    color: var(--color-text);
    word-break: break-all;
}

.otp-input {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
    text-align: center;
}

/* ── Right promo panel ─────────────────────────────────── */
.login-right {
    background: #1e293b;
    position: relative;
    overflow: hidden;
}

.promo-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px;
    width: 100%;
}

.promo-card-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.promo-card-right {
    max-width: 300px;
}

.promo-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.45;
    margin: 0;
}

.promo-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: block;
}

.promo-learn-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    transition: background 0.2s, color 0.2s;
}

.promo-learn-btn:hover {
    background: #fff;
    color: #111;
}
