:root {
    --primary: #3b82f6; 
    --primary-hover: #2563eb;
    --bg-dark: #0f172a; 
    --bg-card: rgba(15, 23, 42, 0.8); 
    --text-main: #f8fafc; 
    --text-muted: #94a3b8; 
    --accent: #38bdf8; 
    --success: #22d3ee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.05em; 
    line-height: 1.6;
}

body {
    background: radial-gradient(circle at top left, #1e293b, #0f172a, #020617);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 10px; 
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 2.5rem; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    text-align: center;
    max-width: 450px;
    width: 100%; 
}

.logo-container { margin-bottom: 1.5rem; }
.logo-img {
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.4));
    margin: 0 auto;
    display: block;
}

h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #f8fafc, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; font-size: 0.95rem; }

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.btn-primary { background: var(--primary); }
.btn-accent { background: #0284c7; }

@media (max-width: 600px) {
    .glass { padding: 1.5rem; border-radius: 1.5rem; }
    h1 { font-size: 1.5rem; }
    .logo-img { max-width: 110px; }
}

.loader {
    width: 35px;
    height: 35px;
    border: 4px solid rgba(255,255,255,0.1);
    border-bottom-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

@keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.fade-in { animation: fadeIn 1s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
