/* Auth pages styling */
body {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" fill-opacity="0.05"/></svg>');
    animation: float 30s linear infinite;
}

.auth-container {
    position: relative;
    z-index: 1;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

[data-bs-theme="dark"] .auth-card {
    background: rgba(31, 41, 55, 0.95);
}

.auth-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.auth-body {
    padding: 2.5rem;
}

.auth-footer {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    text-align: center;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-primary);
}

.home-btn {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.theme-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

@media (max-width: 768px) {
    .auth-header {
        padding: 2rem 1rem;
    }
    
    .auth-body {
        padding: 1.5rem;
    }
}
