* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #1a1a2e; color: #e0e6f0; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; height: 100vh; display: flex; align-items: center; justify-content: center; }
.login-container { width: 100%; max-width: 360px; padding: 20px; }
.login-card { background: #16213e; border: 1px solid #334466; border-radius: 12px; padding: 40px 32px; text-align: center; }
h1 { font-size: 24px; margin-bottom: 4px; background: linear-gradient(135deg, #e94560, #45b7d1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.subtitle { color: #8899bb; font-size: 14px; margin-bottom: 28px; }
form { display: flex; flex-direction: column; gap: 12px; }
input[type="password"] { background: #1f2940; border: 1px solid #334466; color: #e0e6f0; padding: 10px 14px; border-radius: 6px; font-size: 15px; outline: none; }
input[type="password"]:focus { border-color: #e94560; }
button { background: linear-gradient(135deg, #e94560, #ff6b6b); border: none; color: white; padding: 10px; border-radius: 6px; font-size: 15px; font-weight: 500; cursor: pointer; }
button:hover { opacity: 0.9; }
.error { color: #e94560; font-size: 13px; margin-top: 12px; }
