/* ============================================================
   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;
}

/* @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: 28px;
}

/* ── 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-image: url('/images/login-hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.login-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    border-radius: inherit;
}

.promo-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.promo-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    padding-left: 4px;
}

.promo-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.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;
}
