/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: calc(100vh - 70px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.auth-visual {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}
.auth-visual::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.auth-visual::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.auth-visual-content { position: relative; z-index: 1; text-align: center; }
.auth-visual .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.auth-visual .logo img { height: 56px; filter: brightness(0) invert(1); }
.auth-visual .logo-text .name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
}
.auth-visual .logo-text .tagline {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.auth-visual h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}
.auth-visual p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.auth-features { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.auth-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}
.auth-feature .icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Auth Form */
.auth-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    background: var(--off-white);
}
.auth-form-container { width: 100%; max-width: 420px; }
.auth-form-header { margin-bottom: 32px; }
.auth-form-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.auth-form-header p { font-size: 0.9rem; color: var(--text-muted); }

/* Google Button */
.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}
.btn-google:hover { border-color: #4285F4; box-shadow: var(--shadow-sm); }
.btn-google img { width: 20px; height: 20px; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.auth-divider span { font-size: 0.82rem; color: var(--text-muted); white-space: nowrap; }

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.auth-footer a { color: var(--primary); font-weight: 500; }
.auth-footer a:hover { text-decoration: underline; }

/* Password Toggle */
.password-field { position: relative; }
.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}
.password-toggle:hover { color: var(--primary); }

/* Forgot Password */
.forgot-link {
    font-size: 0.82rem;
    color: var(--primary);
    float: right;
    margin-top: -4px;
}
.forgot-link:hover { text-decoration: underline; }

@media (max-width: 992px) {
    .auth-page { grid-template-columns: 1fr; }
    .auth-visual { display: none; }
    .auth-form-section { padding: 40px 24px; min-height: 100vh; }
}
