@charset "UTF-8";

body { 
    font-family: 'Huninn', sans-serif; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0; 
    padding: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
}

.container { 
    max-width: 450px; 
    width: 100%; 
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    text-align: center;
}

h1 { 
    margin: 0 0 10px 0; 
    font-size: 2.2em;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p { 
    margin: 0 0 30px 0; 
    color: #666; 
    font-size: 1.1em;
}

.social-btn { 
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 14px 20px; 
    font-size: 16px; 
    font-weight: 600;
    border-radius: 8px; 
    border: none; 
    cursor: pointer; 
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.social-btn svg { 
    width: 24px; 
    height: 24px; 
    margin-right: 12px; 
}

.google { 
    background-color: #fff; 
    color: #444; 
    border: 1px solid #dadce0;
}

.google:hover {
    background-color: #f8f9fa;
}

.anonymous { 
    background-color: #6c757d; 
    color: #fff; 
}

.anonymous:hover {
    background-color: #5a6268;
}

.status-message {
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 14px;
    display: none;
}

.status-success { background-color: #d4edda; color: #155724; }
.status-error { background-color: #f8d7da; color: #721c24; }
.status-info { background-color: #d1ecf1; color: #0c5460; }

.loading {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    color: #666;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}
.footer .version {
    margin-top: 4px;
    opacity: 0.7;
    font-size: 11px;
}