/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Fondo general */
body {
  height: 100vh;
  background-color: #e6d5bd; /* color beige del fondo */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenedor del formulario */
form {
  background-color: #9fb3c1; /* azul grisáceo */
  padding: 30px;
  border-radius: 15px;
  width: 300px;
}

/* Cada bloque */
form div {
  margin-bottom: 15px;
}

/* Labels */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #1c2b36;
}

/* Inputs y textarea */
input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background-color: #e6d5bd; /* mismo tono claro */
}

/* Quitar borde al hacer focus */
input:focus,
textarea:focus {
  outline: none;
}

/* Botón */
button {
  display: block;
  margin: 15px auto 0;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  background-color: #1f5d8b; /* azul botón */
  color: white;
  font-size: 16px;
  cursor: pointer;
}

/* Hover del botón */
button:hover {
  background-color: #174b70;
}