/* ============================================================
   Aurinto — forms
   ============================================================ */

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
}

.form-field label .opt {
    font-weight: 400;
    color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: .96rem;
    color: var(--ink);
    transition: border-color .15s ease, box-shadow .15s ease;
    appearance: none;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7c93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: #9aa9bb; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .14);
}

/* Honeypot — visually gone, still in the DOM for bots */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    font-size: .82rem;
    color: var(--muted);
}

.form-note a { text-decoration: underline; text-underline-offset: 2px; color: var(--muted); }
.form-note a:hover { color: var(--primary-deep); }

.form-submit { margin-top: 4px; }

.form-status { font-size: .95rem; font-weight: 500; min-height: 1.4em; margin: 0; }

.form-status.ok { color: var(--green); }
.form-status.err { color: var(--red); }
