/* moj-formularz-styles.css */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
input[type="checkbox"] {
  border: 1px solid #aba249;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 10px;
  outline: none; /* Usuwa domyślne podświetlenie */
}

/* Styl dla stanu aktywnego/focus inputów */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus {
  border: 1px solid #aba249; /* Utrzymuje kolor obramowania podczas edycji */
}

/* Styl dla etykiet */
label {
  display: block;
  margin-bottom: 5px;
}

/* Styl dla przycisku wysyłania */
input[type="submit"] {
  background-color: #aba249;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease; /* Dodaje płynną animację */
}

/* Styl dla stanu hover przycisku */
input[type="submit"]:hover {
  color: black;
  background-color: #aba249;
  transform: scale(1.05); /* Lekko powiększa przycisk */
}

/* Styl dla checkbox */
input[type="checkbox"] {
  margin-right: 5px;
}
