body {
  color: var(--primary);
  font-size: larger;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/logo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  opacity: 0.6;
}

.container {
  height: 80dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#alertas_login {
  height: auto;
  width: fit-content;
  margin: 10px auto;
  font-size: medium;
}

#login_section {
  width: 400px;
  height: max-content;
  border: 2px solid var(--primary);
  padding: 2rem;
  border-radius: 5px;
  background-color: white;
}

@media screen and (max-width: 576px) {
  #login_section {
    width: 100%;
  }
}

#login_section h2 {
  margin-bottom: 1.5rem;
}

#login_section article div {
  margin-bottom: 2rem;
}

#login_button {
  background-color: var(--primary);
  color: white;
  transition: all 0.3s ease;
}

#login_button:hover {
  background-color: var(--secondary);
  color: black;
  box-shadow: 0 4px 8px var(--contrast);
}
a:hover {
  color: var(--primary);
}
