:root {
    --bg-black: #050505;
    --card-bg: rgba(12, 12, 12, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --accent-white: #ffffff;
    --text-main: #ffffff;
    --text-dim: #888888;
    --text-muted: #444444;
    --error-red: #ff3b3b;
    --discord-blurple: #5865F2;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    background-image: radial-gradient(circle at top center, #151515 0%, #050505 100%);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container { width: 100%; max-width: 400px; padding: 20px; z-index: 10; }

/* Logo Section */
.logo-wrapper { text-align: center; margin-bottom: 30px; }
.logo { width: 160px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }

/* Glass Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid var(--border);
    border-radius: 35px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.9);
}

.glow-point {
    position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
    width: 120px; height: 120px; background: white; opacity: 0.05; filter: blur(40px);
}

/* Typography */
h1, h2 { font-weight: 200; font-size: 1.8rem; margin: 15px 0; letter-spacing: -1px; }
.desc { color: var(--text-dim); font-size: 0.85rem; line-height: 1.6; margin-bottom: 25px; }

.badge {
    font-size: 10px; color: var(--text-dim); text-transform: uppercase;
    border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; letter-spacing: 1px;
}

/* Form Styles */
.input-row { display: flex; gap: 10px; margin-bottom: 15px; }
.field { margin-bottom: 20px; }
.field label { 
    display: block; font-size: 0.65rem; color: var(--text-muted); 
    text-transform: uppercase; margin: 0 0 8px 5px; letter-spacing: 1px;
}

input {
    width: 100%; background: rgba(255,255,255,0.03);
    border: 1px solid var(--border); border-radius: 12px;
    padding: 14px; color: white; outline: none; transition: 0.3s ease;
}
input:focus { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

/* Buttons */
.btn-primary {
    width: 100%; background: var(--accent-white); color: black;
    border: none; padding: 16px; border-radius: 100px;
    font-weight: 700; cursor: pointer; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:disabled { opacity: 0.1; cursor: not-allowed; }
.btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,255,255,0.15); }

.form-actions { display: flex; gap: 10px; margin-top: 25px; }
.btn-secondary {
    background: transparent; border: 1px solid var(--border);
    color: var(--text-dim); padding: 0 20px; border-radius: 100px; cursor: pointer;
}
.btn-secondary:hover { color: white; border-color: white; }

/* Maintenance specific */
.status-bar { height: 2px; background: rgba(255,255,255,0.05); margin-bottom: 30px; border-radius: 2px; }
.status-fill { width: 75%; height: 100%; background: white; border-radius: 2px; box-shadow: 0 0 10px white; }

/* Success & Error */
.error-msg { color: var(--error-red); font-size: 0.7rem; margin-top: 5px; display: none; text-align: center; }
.success-icon { 
    font-size: 40px; background: white; color: black; width: 60px; height: 60px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px; 
}
.btn-discord {
    display: block; background: var(--discord-blurple); color: white;
    text-align: center; text-decoration: none; padding: 16px; border-radius: 100px;
    font-weight: 700; margin-top: 20px; transition: 0.3s;
}