/* Login and register box style definition */

.loginbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: center;
  background-color: var(--crust);
  padding: 20px 10px;
  border-radius: 8px;
  box-shadow: 3px 6px 6px rgba(0, 0, 0, 0.2);
  animation: appear 0.2s;
}

/* Animation */
@keyframes appear {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.9);
  }
}

/* Blurs background */
#blurred {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
}

/* Login and Register box have different dimensions */
#login {
  height: 230px;
  width: 250px;
}

#register {
  height: 300px;
  width: 250px;
}
