body, html {
  height: 100%;
  margin: 0;
}

.bgimg {
  background: rgb(2,0,36);
  background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(47,47,203,1) 72%, rgba(0,212,255,1) 100%);
  /* background-image: url('/w3images/forestbridge.jpg'); */
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
  font-family: "Bagel Fat One";
  font-size: 25px;
}

.topleft {
  position: absolute;
  top: 0;
  left: 16px;
  padding-left: 25px;
}

.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.explanation {
  font-family: system-ui;
}

hr {
  margin: auto;
  width: 40%;
}

.button {
  background-color: rgba(0,212,255,1);
  border: 2px solid black;
  color: black;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 12px;
}

.button:hover {
  background-color: rgba(47,47,203,1);
  color: white;
  border: 2px solid white;
}

input[type=text] {
  width: 80%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  background-color:rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 2px solid white;
}

input[type=text]:focus {
  background-color:rgba(255, 255, 255, 0.25);
}

input[type=password] {
  width: 80%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  background-color:rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 2px solid white;
}

input[type=password]:focus {
  background-color:rgba(255, 255, 255, 0.25);
}

#rcorners2 {
  border-radius: 25px;
  background: rgba(0, 212, 255, 1);
  border: 2px solid rgba(2, 0, 36, 1);
  padding: 200px;
  width: 600px;
}