body {
  font-family: 'Roboto', sans-serif;
  background: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.contenedor {
  text-align: center;
  max-width: 500px;
  padding: 1em;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.logo {
  width: 250px;
  height: 70px;
  margin-bottom: 20px;
  margin-bottom: 10px;
}
h1 {
  font-size: 1.8em;
  color: #0051ba;
}
p {
  font-size: 1em;
  margin: 10px 0;
}
.formulario {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.formulario input,
.formulario textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.formulario button {
  background-color: #0051ba;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.formulario button:hover {
  background-color: #003f8a;
}
footer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #777;
}