/* Форма заявки: крупный шрифт и большие поля — аудитория пожилая */
.drh-form {
    max-width: 640px;
    font-size: 18px;
    line-height: 1.5;
    /* Отступ при автоскролле к якорю #drh-anfrage после отправки */
    scroll-margin-top: 24px;
}
.drh-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.drh-row .drh-field { flex: 1 1 260px; }
.drh-field { margin: 0 0 18px; }
.drh-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}
.drh-field input[type="text"],
.drh-field input[type="tel"],
.drh-field input[type="email"],
.drh-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 18px;
    border: 2px solid #999;
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
}
.drh-field input:focus,
.drh-field textarea:focus {
    outline: 3px solid #c0142a33;
    border-color: #c0142a;
}
.drh-consent label { font-weight: 400; }
.drh-consent input { margin-right: 8px; transform: scale(1.4); }
.drh-has-error input,
.drh-has-error textarea { border-color: #c0142a; }
.drh-field-error {
    color: #c0142a;
    font-size: 16px;
    margin: 6px 0 0;
}
.drh-form-error {
    background: #fdecee;
    border-left: 4px solid #c0142a;
    padding: 10px 14px;
    margin-bottom: 20px;
}
.drh-success {
    background: #edf7ed;
    border-left: 4px solid #2e7d32;
    padding: 14px 18px;
}
.drh-submit button {
    background: #c0142a;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 14px 32px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
}
.drh-submit button:hover { background: #a01123; }
.drh-required-note { font-size: 15px; color: #666; }
/* Honeypot прячем с экрана (не display:none — часть ботов это детектит) */
.drh-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
