/* Поля ввода (универсальный фикс для всех форм) */
input,
textarea,
select,
button {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
  border: 1px solid #333 !important;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 14px;
  font-family: inherit;
  transition: 0.2s;
}

/* При наведении */
input:hover,
textarea:hover,
select:hover {
  background-color: #252525 !important;
}

/* При фокусе (когда пишешь) */
input:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--accent) !important;
  outline: none !important;
  background-color: #2a2a2a !important;
  color: #fff !important;
}

/* Кнопки */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  background-color: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.1s;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  background-color: var(--accent-hover) !important;
  transform: scale(1.03);
}

/* Чекбоксы и радиокнопки */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--accent); /* Современные браузеры */
  background-color: #1e1e1e !important;
  border: 1px solid #444 !important;
}

/* Дропдауны (select) */
select option {
  background-color: #1e1e1e;
  color: #e0e0e0;
}
