/* Authentication Pages Styles */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    padding: 2rem;
    position: relative;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
    z-index: 0;
}

.auth-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--color-border);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--gray-200);
}

.auth-divider span {
    background-color: var(--bg-card);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
    font-weight: 500;
}

.social-auth {
    margin-bottom: 2rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
}

.auth-footer p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.auth-footer a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Form Overrides for Auth Pages */
.auth-card .form-group {
    margin-bottom: 1.25rem;
}

.auth-card .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.auth-card .form-control {
    height: 48px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--color-border);
}

.auth-card .form-control:focus {
    border-color: var(--color-accent);
    box-shadow: var(--focus-ring);
}

.auth-card .btn {
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-2xl);
    width: 100%;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
}
