
main {
  padding: 120px 2rem 2rem;
}

h1.centrado {
  text-align: center;
  color: red;
  margin-bottom: 2rem;
}

.formulario-contacto {
  max-width: 600px;
  margin: 0 auto;
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario-contacto label {
  font-weight: bold;
  color: #ccc;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background-color: #2b2b2b;
  color: white;
  font-size: 1rem;
}

.formulario-contacto input::placeholder,
.formulario-contacto textarea::placeholder {
  color: #888;
}

.formulario-contacto button {
  background-color: red;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-contacto button:hover {
  background-color: #cc0000;
}
