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

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

main {
    background: #16213e;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    margin: 1rem;
}

h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #e94560;
    font-size: 1.8rem;
}

h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #a0a0b0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

label {
    color: #a0a0b0;
}

input {
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #0f3460;
    color: #e0e0e0;
    font-size: 1rem;
}

input:focus {
    outline: 2px solid #e94560;
    border-color: #e94560;
}

button {
    padding: 0.75rem;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

button:hover {
    background: #c73550;
}

.error {
    background: #3d1a2a;
    border: 1px solid #e94560;
    color: #ff8a9e;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.link {
    text-align: center;
    margin-top: 1rem;
}

.link a {
    color: #e94560;
}
