
body {
  background-color: var(--principal-secundary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Header */
.header {
  background-color: var(--principal-secundary-color);
  padding: 15px 20px;
  position: fixed;
  top: 0;
  width: calc(100% - 100px);
  z-index: 10;
}

.login-container {
  background: var(--branco);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.btn-login {
  background-color: var(--verde-300);
  color: var(--branco);
}
.btn-login:hover {
  background-color: var(--verde-900);
}

/* Estilos do rodapé */
.footer {
  background-color: var(--menu-secundary-color);
  color: var(--branco);
  text-align: center;
  padding: 15px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Responsividade */
@media (max-width: 600px) {
  header h1 {
      font-size: 18px;
  }

  .footer p {
      font-size: 12px;
  }
}
