/* Auth pages */
.auth-page { min-height: 100vh; }

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.auth-left {
    display: flex;
    flex-direction: column;
    padding: 36px 44px;
}

.auth-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
}
.auth-logo:hover { color: var(--color-text); }

.auth-form-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 380px;
    width: 100%;
}

.auth-form-wrapper h1 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.auth-subtitle {
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    font-size: 0.9rem;
}

.auth-switch {
    margin-top: 20px;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

.auth-right {
    background: #111827;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px;
}

.auth-right-content {
    max-width: 380px;
}

.auth-right-content h2 {
    font-size: 1.75rem;
    margin-bottom: 14px;
    color: #fff;
}

.auth-right-content p {
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #d1d5db;
}

.auth-feature-icon {
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .auth-container { grid-template-columns: 1fr; }
    .auth-right { display: none; }
    .auth-left { padding: 24px; }
}
