
:root {
    --font-sans: system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
.page {
    min-height: 100vh;
    background: #f8f7f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem 2.5rem;
}
.logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.15rem;
}
.logo-svg {
    width: 77%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
}
.logo-tagline {
    font-size: 9px;
    letter-spacing: 0.16em;
    color: #b8922a;
    text-transform: uppercase;
    margin-top: 3px;
    font-family: var(--font-sans);
}
.logo-name {
    font-size: 15px;
    font-weight: 700;
    margin-top: 2px;
    font-family: var(--font-sans);
}
.logo-name span:first-child { color: #1e2d45; }
.logo-name span:last-child { color: #b8922a; }
.card {
    background: #fff;
    border-radius: 16px;
    border: 0.5px solid #e0ddd7;
    padding: 0.75rem 1.25rem 1.75rem;
    width: 100%;
    max-width: 420px;
}
.desc {
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    text-align: center;
    margin-bottom: 1.25rem;
    font-family: var(--font-sans);
}
.desc-gold {
    color: #b8922a;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}
.divider { height: 1px; background: #ece9e2; margin-bottom: 1.25rem; }
.field { margin-bottom: 1rem; }
.field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #1e2d45;
    margin-bottom: 5px;
    font-family: var(--font-sans);
}
.field input, .field select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1.5px solid #eae8e2;
    border-radius: 10px;
    font-size: 15px;
    color: #1e2d45;
    background: #fdfcfa;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: var(--font-sans);
    -webkit-appearance: none;
    appearance: none;
}
.field input:focus, .field select:focus {
    border-color: #b8922a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184,146,42,0.10);
}
.field input::placeholder { color: #ccc; }
.field select {
    color: #bbb;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #fdfcfa;
}
.field select.picked { color: #1e2d45; }
.field.err input, .field.err select {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.09);
}
.err-msg {
    font-size: 11px;
    color: #c0392b;
    margin-top: 4px;
    display: none;
    font-family: var(--font-sans);
}
.field.err .err-msg { display: block; }
.btn-submit {
    width: 100%;
    height: 52px;
    background: #1e2d45;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
    touch-action: manipulation;
}

.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #eae8e2;
    border-radius: 10px;
    font-size: 15px;
    color: #1e2d45;
    background: #fdfcfa;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: var(--font-sans);
    resize: none;
    line-height: 1.5;
}
.field textarea:focus {
    border-color: #b8922a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184,146,42,0.10);
}
.field textarea::placeholder { color: #ccc; }

.btn-submit:active { background: #0f1926; }
.success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 1rem 0 0.5rem; }
.success i { font-size: 48px; color: #b8922a; margin-bottom: 0.75rem; }
.success h3 { color: #1e2d45; font-size: 17px; font-weight: 600; margin-bottom: 6px; font-family: var(--font-sans); }
.success p { color: #666; font-size: 13px; line-height: 1.65; font-family: var(--font-sans); }

/* ---- RESPONSIVE ---- */
@media (max-height: 700px) {
    .page { padding: 0.5rem 1rem 1rem; }
    .logo-wrap { margin-bottom: 0.25rem; }
    .logo-svg { max-width: 120px; }
    .card { padding: 0.6rem 1.25rem 1rem; }
    .desc { margin-bottom: 0.5rem; font-size: 12px; }
    .divider { margin-bottom: 0.5rem; }
    .field { margin-bottom: 0.5rem; }
    .field input, .field select { height: 40px; font-size: 14px; }
    .field textarea { font-size: 14px; }
    .btn-submit { height: 44px; font-size: 15px; margin-top: 0.35rem; }
}

@media (max-height: 600px) {
    .logo-svg { max-width: 90px; }
    .logo-tagline, .logo-name { display: none; }
    .desc { display: none; }
    .divider { display: none; }
    .field { margin-bottom: 0.4rem; }
    .field input, .field select { height: 38px; }
    .btn-submit { height: 42px; }
}

@media (min-width: 768px) {
    .card { max-width: 480px; }
}
