body {
  margin: 0;
  padding: 0;
  background: #0074a6;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
}

/* Aquí la magia del centrado vertical real */
.container {
  min-height: 100vh;              /* ocupa todo el alto de la ventana */
  display: flex;
  flex-direction: column;
  justify-content: center;        /* centra verticalmente */
  align-items: center;            /* centra horizontalmente */
  padding: 0 16px;                /* un poco de respiro en móviles */
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

p {
  max-width: 650px;               /* limita el ancho del párrafo */
  margin: 10px 0 0 0;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: #ffd400;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}
