/* Auth Specific Styles - Advanced & Stylish */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, var(--primary-900), #000);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.auth-page::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    filter: blur(150px);
    top: -100px;
    right: -100px;
    opacity: 0.4;
    z-index: 0;
}

.auth-page::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--gradient-success);
    filter: blur(130px);
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
    z-index: 0;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 10;
    animation: authFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.auth-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 28px;
    box-shadow: var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.auth-card .glass-card {
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="light"] .auth-card .glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    text-align: center;
    color: var(--neutral-400);
    margin-bottom: 32px;
    font-size: var(--text-sm);
}

.form-floating>.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: var(--radius-lg);
}

[data-bs-theme="light"] .form-floating>.form-control {
    background: white;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-800);
}

.form-floating>.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.auth-btn {
    padding: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 16px;
    border-radius: var(--radius-lg);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: var(--text-sm);
    color: var(--neutral-400);
}

.auth-link {
    color: var(--primary-400);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.auth-link:hover {
    color: var(--primary-300);
    text-decoration: underline;
}