/* General Styles */
body {
  font-family: Arial, sans-serif;
  color: #e0e0e0; /* Color de texto claro */
  margin: 0;
  padding: 0;
  background-color: #0e0d0d;
}

.contenedor-card{
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form Container */
.form-container {
  max-width: 500px;
  padding: 20px;
  background-color: #1e1e1e; /* Fondo del formulario */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
  text-align: center;
  color: #f5a623; /* Color de título */
  margin-bottom: 20px;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 16px;
  margin-bottom: 8px;
  color: #e0e0e0; /* Color de las etiquetas */
}

input[type="text"],
input[type="date"],
input[type="tel"],
input[type="email"],
select {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #333; /* Fondo de los campos */
  color: #e0e0e0; /* Color del texto en los campos */
}

button {
  padding: 10px;
  background-color: #f5a623; /* Color del botón */
  color: #121212; /* Color del texto del botón */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #e0941c; /* Color del botón al pasar el ratón */
}

button:focus {
  outline: none;
}
