* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Lora', serif;
    background: #161614;
    color: #ece7da;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container {
    max-width: 440px;
    width: 100%;
    padding: 2.2rem 2rem;
}
h1 {
    font-size: 2.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #f3eee2;
    letter-spacing: 0.005em;
}
.subtitle {
    font-size: 1.05rem;
    font-style: italic;
    color: #c2bba8;
    margin-bottom: 2rem;
}
label {
    display: block;
    font-size: 0.98rem;
    color: #d4cdb9;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: 'Lora', serif;
    font-size: 1.12rem;
    background: #242420;
    color: #f0ebde;
    border: 1px solid #4a4a40;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}
input:focus { border-color: #8a8470; }
button {
    margin-top: 1.6rem;
    padding: 0.75rem 2.2rem;
    font-family: 'Lora', serif;
    font-size: 1.12rem;
    background: #34342c;
    color: #f0ebde;
    border: 1px solid #5e5e50;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
}
button:hover { background: #45453a; border-color: #7a7464; }
button:disabled { opacity: 0.4; cursor: not-allowed; }
.error {
    margin-top: 1rem;
    font-size: 1rem;
    color: #e0a883;
    min-height: 1.2rem;
}
.alt {
    margin-top: 1.6rem;
    font-size: 1rem;
    color: #b0a994;
}
.alt a {
    color: #d4be8a;
    text-decoration: none;
    border-bottom: 1px solid #6a604a;
}
.alt a:hover { color: #f3eee2; }
textarea {
    width: 100%;
    min-height: 180px;
    padding: 1rem 1.1rem;
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    line-height: 1.55;
    background: #242420;
    color: #f0ebde;
    border: 1px solid #4a4a40;
    border-radius: 4px;
    resize: vertical;
    outline: none;
    margin-bottom: 0.5rem;
    transition: border-color 0.2s;
}
textarea:focus { border-color: #8a8470; }
textarea::placeholder { color: #6e6856; font-style: italic; }

@media (max-width: 600px) {
    .container { padding: 1.6rem 1.2rem; }
    h1 { font-size: 1.8rem; }
    .subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
    input, button, textarea { font-size: 1.05rem; }
}
