/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Tamaño responsivo para títulos y texto */
h1 {
  font-size: 2.5rem; /* Tamaño grande para pantallas grandes */
  font-weight: bold;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
}

p, label {
  font-size: 1rem;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p, label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  p, label {
    font-size: 0.8rem;
  }
}

/* Contenedor principal */
.container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  max-width: 400px;
}

/* Elementos del formulario */
input, textarea, button {
    font-family: Menlo, Monaco, "Courier New", monospace;
	width: 100%;
  padding: 10px;
  font-size: 1rem;
}

/* Botón */
button {
  cursor: pointer;
  background-color: #007BFF;
  color: #fff;
  border: none;
}

button:hover {
  background-color: #0056b3;
}

/* Estilos para enlaces */
a {
  color: #007BFF;
  text-decoration: none;
  font-size: 1rem;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

