body {
  background-color: #1e0c47;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

header {
  background-color: #2e1065;
  padding: 30px;
  text-align: center;
  border-bottom: 3px solid #f09e05;
}

header h1 {
  color: #f09e05;
  font-size: 28px;
  margin: 0;
}

form.formulario {
  max-width: 500px;
  margin: 40px auto;
  background-color: #2b1b58;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(240, 158, 5, 0.4);
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 8px;
  background-color: #f3f3f3;
  color: #1e0c47;
  font-size: 14px;
}

input[type="reset"],
input[type="submit"] {
  padding: 10px 20px;
  margin-top: 25px;
  margin-right: 10px;
  border: none;
  border-radius: 8px;
  background-color: #f09e05;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

input[type="reset"]:hover,
input[type="submit"]:hover {
  background-color: #d98c00;
}

.botones {
  text-align: center;
}
