/* ===== АККУРАТНЫЕ ФОРМЫ ДЛЯ ВСЕХ УСТРОЙСТВ ===== */
.webform-compact .form-item {
  margin-bottom: 25px !important;
  width: 100% !important;
}

.webform-compact .form-text,
.webform-compact .form-email,
.webform-compact .form-tel,
.webform-compact .form-number,
.webform-compact select.form-select {
  width: 100% !important;
  max-width: 100% !important;
  padding: 14px 16px !important;
  font-size: 16px !important;
  height: 52px !important;
  box-sizing: border-box !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  margin: 0 !important;
}

.webform-compact .form-textarea {
  width: 100% !important;
  max-width: 100% !important;
  padding: 14px 16px !important;
  font-size: 16px !important;
  min-height: 160px !important;
  box-sizing: border-box !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  margin: 0 !important;
}

.webform-compact label {
  display: block !important;
  font-weight: bold !important;
  margin-bottom: 10px !important;
  font-size: 17px !important;
  line-height: 1.3 !important;
  color: #333 !important;
}

.webform-compact .description {
  display: block !important;
  margin-top: 10px !important;
  font-size: 15px !important;
  color: #666 !important;
  line-height: 1.4 !important;
  font-style: italic !important;
}

.webform-compact .form-actions {
  margin-top: 35px !important;
  text-align: left !important;
}

.webform-compact input[type="submit"] {
  background-color: #640000 !important;
  color: white !important;
  padding: 14px 35px !important;
  font-size: 17px !important;
  border-radius: 5px !important;
  border: none !important;
  cursor: pointer !important;
  font-weight: bold !important;
  display: inline-block !important;
}

.webform-compact input[type="submit"]:hover {
  background-color: #8c0000 !important;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .webform-compact .form-text,
  .webform-compact .form-email,
  .webform-compact .form-tel,
  .webform-compact .form-number,
  .webform-compact select.form-select {
    font-size: 18px !important;
    height: 56px !important;
  }
  
  .webform-compact label {
    font-size: 18px !important;
  }
  
  .webform-compact .description {
    font-size: 16px !important;
  }
}