@import url(main.css);
body{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}
#topbar{
  flex:1;
}
body > div{
  flex:9;
}
.card {
  padding: 25px;
  animation: fadeIn 2s ease-in-out;
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.762);
  
}

#auth-form h1 {
  font-weight: 900;
  margin-bottom: 12px;
  align-self: center;
  font: 4rem "Poppins", sans-serif;
}

#auth-form {
  font-size: 1.2rem;
}

#auth-form label {
  font-weight: 600;
}

#auth-form button {
  align-self: center;
}

#auth-form>p {
  align-self: center;
  margin-top: 25px;
}

#auth-form>p a {
  font-weight: bold;
}