/* ============================================================
   Dijital Analiz — Auth Pages CSS
   ============================================================ */

.auth-body {
    min-height: 100vh;
    display: flex;
    background: var(--bg-body);
}

.auth-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Left branding panel */
.auth-brand {
    flex: 1;
    background: var(--primary-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-12);
    position: relative;
    overflow: hidden;
}

.auth-brand::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.auth-brand::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.auth-brand-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 480px;
}

.auth-brand-logo {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    backdrop-filter: blur(10px);
}

.auth-brand-logo svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.auth-brand-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.auth-brand-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.auth-brand-features {
    margin-top: var(--space-10);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    font-weight: 500;
}

.auth-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-feature-icon svg { width: 16px; height: 16px; fill: white; }

/* Right form panel */
.auth-form-panel {
    width: 520px;
    min-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-12);
    background: var(--bg-surface);
}

.auth-form-header {
    margin-bottom: var(--space-8);
}

.auth-form-header h1 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.auth-form-header p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.auth-form .form-input {
    height: 46px;
    font-size: var(--text-base);
}

.auth-form .btn-primary {
    width: 100%;
    height: 46px;
    font-size: var(--text-base);
}

.auth-form-footer {
    margin-top: var(--space-6);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.auth-form-footer a {
    color: var(--primary-light);
    font-weight: 600;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin: var(--space-6) 0;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.password-toggle {
    position: relative;
}

.password-toggle .toggle-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 4px;
}

.password-toggle .toggle-eye:hover { color: var(--text-primary); }

.remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
}

.remember-row a {
    font-size: var(--text-sm);
    color: var(--primary-light);
    font-weight: 500;
}

@media (max-width: 960px) {
    .auth-brand { display: none; }
    .auth-form-panel {
        width: 100%;
        min-width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
}
