input, textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: rgba(255, 248, 240, 0.05);
  border: 1px solid rgba(236, 179, 100, 0.3);
  border-radius: 6px;
  color: #fdf6e3;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #ecc56b;
  box-shadow: 0 0 8px rgba(236, 179, 100, 0.5);
  background: rgba(255, 248, 240, 0.1);
}

input:hover, textarea:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fdf6e3;
}