/*login*/
.login{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 500px;
  height: 450px;
  border: 1px solid var(--color-white);
  border-radius: 5px;
  background-color: var(--color-light);
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
}

.login-notification{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 10px;
  border-radius: 5px;
  color: var(--color-light);
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  text-align: center;
  transition: opacity 0.2s ease-in-out;
}

.show{
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.hide{
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.hidden{
  display: none;
}