/* Clean Dark Theme with Brand Colors */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --primary: #2a77de;
    --primary-hover: #1f5fb2;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;
    --bg-input: #2a2a2a;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #999;
    --text-muted: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 14px;
}

.container {
    max-width: 500px;
    width: 100%;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-family: 'Sora', sans-serif;
    color: #05d6d6;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 8px;
}

.subtitle {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 400;
}

.form-card {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-family: 'JetBrains Mono', monospace;
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #05d6d6;
    box-shadow: 0 0 0 3px rgba(5, 214, 214, 0.1);
    background: #4a4a4a;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 119, 222, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
    display: none;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
}

/* Loading state */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 24px;
    }
}

/* Remove all fancy animations and effects */
.hud-corner,
.tech-indicators,
.circuit-pattern,
.rotating-gradient {
    display: none !important;
}