.formulario-container {
  display: flex;
  justify-content: center;  
  align-items: center;     
  min-height: 100vh;         
  background-color: #1a1a49; 
}

form {
  background: white;         
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;           
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Botón */
form button {
  width: 100%;
  padding: 12px;
  background-color: #645394;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background-color: #4b3d73;
}

#formSuccess {
  display: none;
  color: #5171ae; 
  margin-top: 10px;
  font-weight: bold;
}