* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f2eb;
    color: #111;
}

.page-shell {
    max-width: 850px;
    margin: 0 auto;
    padding: 32px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 800;
}

.page-header {
    margin-bottom: 24px;
}

.page-header h1 {
    margin: 0 0 8px;
    font-size: 42px;
}

.panel {
    background: #fff;
    border: 2px solid #111;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 5px 5px 0 #111;
}

label {
    display: block;
    margin-bottom: 18px;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    display: block;
    margin-top: 8px;
    padding: 12px;
    border: 2px solid #111;
    border-radius: 6px;
    font: inherit;
    background: #fffdf8;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.content-box {
    min-height: 260px;
}

button {
    padding: 12px 18px;
    border: 2px solid #111;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

button:disabled {
    opacity: 0.6;
    cursor: wait;
}

.status-message {
    margin-top: 16px;
    font-weight: 800;
}