/* static/css/auth.css */

body { 
    background-color: #020617; 
    color: #e2e8f0; 
    background-image: radial-gradient(circle at 50% 0%, #1e293b 0%, #020617 80%);
    min-height: 100vh;
}

.glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.input-field {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.input-field:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
    outline: none;
}

canvas#captchaCanvas {
    border-radius: 0.5rem;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Спиннер загрузки */
.loader {
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 3px solid #ffffff;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: none; 
}

@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}