body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: var(--bg-color);
    margin: 0;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 400px;
    padding: 40px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

a {
    text-decoration: none;
    flex: 1;
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* Stealth CSS */
#auth-panel {
    display: none;
}

#stealth-panel {
    display: block;
}

.stealth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    outline: none;
    font-family: inherit;
}

.stealth-input:focus {
    border-color: var(--accent-color);
}
