/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: Child theme for Hello Elementor
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Контейнер формы */
.wpcf7-form {
  max-width: 700px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

/* Убираем лишние br */
.wpcf7-form br {
  display: none;
}

/* Отступы */
.wpcf7-form p {
  margin-bottom: 18px;
}

/* Лейблы */
.wpcf7-form label {
  display: block;
  font-size: 14px;
  color: #374151;
}

/* Поля */
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: #f9fafb;
  box-sizing: border-box;
  font-family: inherit;
}

/* Фокус */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
}

/* Текстовое поле */
.wpcf7-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Кнопка */
.wpcf7-form input[type="submit"] {
  margin-top: 10px;
  padding: 14px;
  width: 100%;
  background: linear-gradient(135deg, #0052ff 0%, #00d4aa 100%);
  box-shadow: 0 4px 15px #00d4aa4d;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.wpcf7-form input[type="submit"]:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #ffd700 100%);
  box-shadow: 0 6px 25px #ffd70066;
}

/* Ошибки */
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}
