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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #1a1a2e;
    color: #eee;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    background: #16213e;
    border-radius: 16px;
    border: 1px solid #0f3460;
}

.auth-container h1 {
    color: #e94560;
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
}

.auth-container p {
    color: #aaa;
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.auth-container p a {
    color: #e94560;
    text-decoration: none;
}

.auth-container form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #ccc;
}

.auth-container form input[type="email"],
.auth-container form input[type="password"],
.auth-container form input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #0f3460;
    background: #1a1a2e;
    color: #eee;
    font-size: 15px;
    outline: none;
    margin-bottom: 16px;
}

.auth-container form input:focus,
.auth-container form select:focus {
    border-color: #e94560;
}

.dob-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.dob-row select {
    flex: 1;
    padding: 12px 10px;
    border-radius: 8px;
    border: 1px solid #0f3460;
    background-color: #1a1a2e;
    color: #eee;
    color-scheme: dark;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.auth-container form button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #e94560;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}

.auth-container form button:hover {
    opacity: 0.9;
}

.errorlist {
    list-style: none;
    color: #ff6b6b;
    font-size: 13px;
    margin-bottom: 12px;
}

.age-notice {
    font-size: 12px;
    color: #888;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 16px;
}

.terms-notice {
    font-size: 12px;
    color: #888;
    text-align: left;
    margin-bottom: 8px;
}

.terms-notice a {
    color: #e94560;
    text-decoration: none;
}

@media (max-width: 600px) {
    .auth-container {
        margin: 0 16px;
        padding: 32px 24px;
    }
    .auth-container form input { font-size: 16px; }
}
