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

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

.container {
    text-align: center;
    max-width: 480px;
    padding: 2rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

form {
    display: flex;
    gap: 0.5rem;
}

input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

input[type="email"]:focus {
    border-color: #714b67;
}

button {
    padding: 0.75rem 1.5rem;
    background: #714b67;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

button:hover {
    background: #5a3c53;
}

button:disabled {
    background: #aaa;
    cursor: not-allowed;
}

#status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

#status.info {
    display: block;
    background: #e7f1ff;
    color: #0c5460;
}

#status.success {
    display: block;
    background: #d4edda;
    color: #155724;
}

#status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}
