/* Auth pages - minimal, inherits from base.css + components.css */
/* Auth-specific ambient glow centered */
.auth-container::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(226, 163, 85, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
