/* === AUTH PAGES === */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(ellipse at top, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(74, 222, 128, 0.08) 0%, transparent 50%);
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

.auth-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -1px;
    background-image: linear-gradient(90deg, rgba(0, 225, 255, 1) 0%, rgba(0, 255, 110, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
    margin-bottom: 40px;
    text-align: center;
}

.auth-container h1 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--secondary);
    margin-bottom: 36px;
}

.auth-form {
    text-align: left;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.form-group small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--secondary);
}

.auth-error {
    color: #ef4444;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2px;
    min-height: 20px;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.6), 0 0 12px rgba(239, 68, 68, 0.4);
    animation: errorGlow 0.3s ease-in;
}

@keyframes errorGlow {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.auth-footer {
    margin-top: 28px;
    font-size: 14px;
    color: var(--secondary);
}

.auth-footer a {
    color: var(--accent-cyan);
    font-weight: 500;
    margin-left: 4px;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.full {
    width: 100%;
}