.auth-page {
    display: flex;
    min-height: 100vh;
}

/* ── Hero (left) ─────────────────────────────── */
.auth-hero {
    flex: 1;
    background: linear-gradient(145deg, #053b6c 0%, #0a5fa8 55%, #1a7fc4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.auth-hero::before,
.auth-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.auth-hero::before {
    width: 640px;
    height: 640px;
    top: -200px;
    right: -160px;
}

.auth-hero::after {
    width: 420px;
    height: 420px;
    bottom: -160px;
    left: -100px;
}

.auth-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 440px;
}

.auth-hero-logo {
    height: 80px;
    width: 80px;
    display: block;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px;
}

.auth-hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.auth-hero-slogan {
    font-size: 1.15rem;
    opacity: 0.85;
    line-height: 1.65;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 0;
    font-size: 0.95rem;
    opacity: 0.88;
}

.auth-feature-item i {
    font-size: 1.3rem;
    width: 1.5rem;
    text-align: center;
    opacity: 0.75;
    flex-shrink: 0;
}

/* ── Form panel (right) ──────────────────────── */
.auth-panel {
    width: 500px;
    min-width: 320px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
}

.auth-form-container {
    width: 100%;
    max-width: 390px;
}

.auth-form-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #053b6c;
    margin-bottom: 0.3rem;
}

.auth-form-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.75rem;
}

.auth-link {
    color: #0a5fa8;
}

.auth-divider {
    position: relative;
    text-align: center;
    color: #adb5bd;
    font-size: 0.85rem;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.auth-divider span {
    position: relative;
    background: #fff;
    padding: 0 0.85rem;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 767.98px) {
    .auth-panel {
        width: 100%;
        min-height: 100vh;
        padding: 2rem 1.25rem;
    }
}
