* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ece7e1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
}

.page {
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    background: #fdfcfa;
    padding: 24px 20px 48px;
    border-left: 1px solid #ddd8d0;
    border-right: 1px solid #ddd8d0;
}

.masthead {
    text-align: center;
    margin-bottom: 8px;
}

.masthead h1 {
    font-size: 2rem;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-underline-offset: 6px;
    margin: 0;
}

.masthead p {
    margin: 6px 0 0;
    font-size: 0.85rem;
    color: #555;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 2px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 6px 0;
    margin: 20px 0 24px;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.section-title {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0 0 16px;
}

.messages {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.messages li {
    font-size: 0.9rem;
    text-align: center;
    padding: 8px 10px;
    border: 1px solid #1a1a1a;
    margin-bottom: 8px;
}

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

.field .hint {
    font-size: 0.75rem;
    color: #888;
    margin-top: 3px;
}

.field input,
.field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #1a1a1a;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    padding: 8px 2px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-bottom: 2px solid #1a1a1a;
}

.field .errors {
    font-size: 0.8rem;
    color: #b23c3c;
    margin-top: 4px;
}

.submit-btn {
    margin-top: 8px;
    padding: 12px;
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    color: #fdfcfa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
    cursor: pointer;
}

.submit-btn:active {
    background: #333;
}

.footer-line {
    margin-top: 40px;
    text-align: center;
    font-size: 0.7rem;
    color: #999;
}
