:root {
    --bg-dark: #0d1117;
    --primary-blue: #58a6ff;
    --card-bg: #161b22;
    --text-main: #f0f6fc;
    --text-dim: #8b949e;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-dark);
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-main);
}

.auth-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #30363d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 380px;
}

h2 { color: var(--primary-blue); margin-bottom: 8px; text-align: center; }
p { color: var(--text-dim); text-align: center; margin-bottom: 25px; font-size: 0.9rem; }

.input-group { margin-bottom: 15px; }

input {
    width: 100%;
    padding: 12px;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    color: white;
    box-sizing: border-box;
    font-size: 1rem;
}

input:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 5px rgba(88, 166, 255, 0.3);
}

.btn-auth {
    width: 100%;
    padding: 12px;
    background: var(--primary-blue);
    border: none;
    border-radius: 6px;
    color: #0d1117;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-auth:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.auth-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
}