/* Compact, login-aligned controls for the food business onboarding flow. */
.form-card,
.launch {
    padding: 38px 40px;
    border: 1px solid #fff;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
}

.fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 16px;
    align-items: start;
}

.fields .wide {
    grid-column: auto;
}

.fields label,
.launch label {
    gap: 6px;
    font-size: 14px;
    line-height: 1.25;
}

.fields .field-label--inline-hint {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 5px;
    row-gap: 6px;
}

.fields .field-label--inline-hint input {
    flex: 0 0 100%;
}

.fields input,
.fields select,
.launch select {
    width: 100%;
    height: 44px;
    min-width: 0;
    padding: 0 14px;
    border: 1.5px solid #c7dcd4;
    border-radius: 11px;
    background: #f3f9f6;
    color: var(--food-ink);
    font: 500 15px/1 Inter, Arial, sans-serif;
    box-shadow: inset 0 1px 2px rgba(9, 47, 41, 0.03);
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.fields input::placeholder {
    color: #72847f;
    opacity: 1;
}

.fields input:hover,
.fields select:hover,
.launch select:hover {
    border-color: #8dbbb0;
    background: #f8fcfa;
}

.fields input:focus,
.fields select:focus,
.launch select:focus {
    outline: 0;
    border-color: #16836f;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(22, 131, 111, 0.12);
}

.choice-row {
    gap: 10px;
}

.choice-row span {
    padding: 10px 15px;
    font-size: 14px;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s, transform 0.2s;
}

.choice-row span:hover {
    border-color: #16836f;
    transform: translateY(-1px);
}

.launch button {
    min-height: 44px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.launch button:hover {
    background: #ffb814;
    box-shadow: 0 10px 24px rgba(189, 126, 25, 0.32);
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .fields {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 25px 18px;
    }
}
