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

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

.container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input[type="email"] {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

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

button {
    padding: 14px 24px;
    background: #e63946;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #c1121f;
}

.fine-print {
    color: #999;
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.5;
}

.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.message.error {
    background: #fff0f0;
    color: #c1121f;
    border: 1px solid #fdd;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #e63946;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

a {
    color: #e63946;
}
