#login {
  background-color: #121214;
  background-image: url("../images/app-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
}
#login .card {
  position: relative;
  height: 320px;
  background: #1c1c1c;
  border-radius: 8px;
  overflow: hidden;
}
#login .card h3 {
  color: white;
  font-weight: 700;
}
#login .logo {
  max-width: 250px;
  margin: 5vh auto;
}
#login .card::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: -50%;
  left: -50%;
  width: 380px;
  height: 380px;
  transform-origin: bottom right;
  background: linear-gradient(0deg, transparent, #45f3ff, #45f3ff);
  animation: animate 6s linear infinite;
}
#login .card::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: -50%;
  left: -50%;
  width: 380px;
  height: 380px;
  transform-origin: bottom right;
  background: linear-gradient(0deg, transparent, #45f3ff, #45f3ff);
  animation: animate 6s linear infinite;
  animation-delay: -3s;
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#login .card form {
  position: absolute;
  inset: 2px;
  background: #28292d;
  border-radius: 8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
blockquote{
  color: gray;
  font-size: .8rem;
  margin: .5rem;
}