
/* Deftform Custom Styles */
form {
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 20px auto;
}

input, textarea, select {
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

input:hover, textarea:hover, select:hover {
  border-color: #0099cc;
  box-shadow: 0 0 5px rgba(0, 153, 204, 0.3);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #007baa;
  box-shadow: 0 0 8px rgba(0, 123, 170, 0.4);
}

label {
  color: #005b83;
  font-weight: 500;
  margin-bottom: 0.3rem;
  display: block;
}

button, input[type="submit"] {
  background-color: #0099cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover, input[type="submit"]:hover {
  background-color: #007baa;
  transform: scale(1.05);
}
