/* ==========================================================================
   FORMS.CSS - Стилі форм
   ========================================================================== */

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Базові стилі input */
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #000;
}

/* Placeholder */
::placeholder {
  color: #999;
  opacity: 1;
}
