/* Authentication-specific styles for login and signup pages */

/* Login page enhancements */
.password-hint {
    margin-top: 0.5rem;
}

.password-hint small {
    color: var(--text-tertiary, #9CA3AF);
    font-size: 0.875rem;
}

/* OAuth section styling */
.oauth-section {
    margin: 2rem 0;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: #6b7280;
    font-size: 0.875rem;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 1;
}

.divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.oauth-buttons {
    display: flex;
    gap: 1rem;
}

.btn-oauth {
    flex: 1;
    background: white;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-oauth:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

/* Auth links styling */
.auth-links {
    text-align: center;
    margin-top: 2rem;
}

.auth-links p {
    color: #6b7280;
    font-size: 0.875rem;
}

.signup-link, .login-link {
    color: var(--primary-color, #4F46E5);
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover, .login-link:hover {
    text-decoration: underline;
}

/* Message styling */
.success-message, .error-message {
    padding: 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

