* {
    box-sizing: border-box;
}

:root {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2937;
    background: #ffffff;
}

body {
    margin: 0;
    min-height: 100vh;
}

.container {
    width: min(100% - 2rem, 760px);
    margin: 0 auto;
}

.card {
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border-radius: 16px;
    background: #ffffff;
  
}

h1 {
    margin-top: 0;
}

.intro {
    margin-bottom: 1.75rem;
    color: #4b5563;
}

.field {
    margin-bottom: 1.15rem;
}

label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 650;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border: 1px solid #070707;
    border-radius: 9px;
    font: inherit;
    background: #ffffff;
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(37, 99, 235, 0.18);
    border-color: #2563eb;
}

textarea {
    resize: vertical;
}

.checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
}

.checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox label {
    margin: 0;
    font-weight: 500;
}

button {
    border: 0;
    border-radius: 9px;
    padding: 0.85rem 1.2rem;
    font: inherit;
    font-weight: 700;
    color: #ffffff;
    background: #1d4ed8;
    cursor: pointer;
}

button:hover {
    background: #1e40af;
}

.notice {
    margin-bottom: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: 9px;
}

.notice.success {
    color: #14532d;
    background: #dcfce7;
}

.notice.error {
    color: #7f1d1d;
    background: #fee2e2;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
