.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    color: #1f2937;
    font-size: 14px;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #d7dde8;
    border-radius: 14px;
    background: #ffffff;
    color: #111827;
    font-size: 15px;
    outline: none;
    padding: 13px 14px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .12);
}

.form-error {
    color: #b91c1c;
    font-size: 13px;
    font-weight: 700;
}
