/* @import url('https://fonts.googleapis.com/css?family=Raleway:wght@500;700&family=Roboto+Condensed:wght@700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');

:root {
  --light-grey: #F6F9FC;
  --dark-terminal-color: #0A2540;
  --accent-color: #246bf0;
  --radius: 3px;
}

#main {
  padding: 16px;
  font-family: 'Raleway';
  font-weight: 500;
  display: flex;
  justify-content: center;
  /* font-size: 1.2em; */
  font-size: 15px;
  color: var(--dark-terminal-color);
}

#titlebar {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 35px;
  font-weight: 700;
  position: absolute;
  left: 2%;
  text-align: center;
  width: 500px;
  margin: 5px -30px;
}

hr {
  position: absolute;
  left: 11.5%;
  width: 80%;
  top: 14.5%;
}

#nameheader {
  position: absolute;
  left: 13%;
  top: 20%;
  display: flex;
  flex-direction: row;
}

#nameintro {
  font-size: 19px;
  font-weight: 600;
}

#nametxt {
  margin-left: 40px;
  font-weight: 400;
  font-size: 19px;
}

#emailheader {
  position: absolute;
  left: 13%;
  top: 26%;
  display: flex;
  flex-direction: row;
}

#emailintro {
  font-size: 19px;
  font-weight: 600;
}

#emailtxt {
  margin-left: 40px;
  font-weight: 400;
  font-size: 19px;
}

#subscriptionintro {
  position: absolute;
  left: 13%;
  top: 33%;
  display: flex;
  flex-direction: row;
  font-weight: 600;
  font-size: 32px;
}

#logoutbtn {
  position: absolute;
  right: 9%;
  top: 17.5%;
}

#table {
  height: auto;
  width: 75vw;
  position: absolute;
  top: 40%;
  left: 13%;
}

#loginform {
  border-radius: 10px;
  height: 42vh;
  width: 35vw;
  position: absolute;
  top: 30%;
  left: 50%;
  margin: 0 0 0 -17.5vw;
  background: #5e88eb;
}

#loginlbl {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  height: 7vh;
  width: 20vw;
  position: absolute;
  top: 3.8%;
  left: 50%;
  margin: 0 0 0 -10vw;
  color: white;
}

#emailcont {
  position: relative;
  width: 300px;
  top: 25%;
  left: 50%;
  margin: 0 0 0 -150px;
}

#passwordcont {
  position: relative;
  width: 300px;
  top: 80px;
  left: 50%;
  margin: 0 0 0 -150px;
}

#loginbtn {
  position: absolute;
  height: 60px;
  width: 300px;
  bottom: 20px;
  left: 50%;
  margin: 0 0 0 -150px;
}

#registerdiv {
  width: 100vw;
  height: auto;
  position: absolute;
  bottom: 30px;
  left: 0;
  /* display: flex;
  flex-wrap: wrap;
  align-content: center; */
  align-items: center;
  display: flex;
  justify-content: center;
}


@media (max-width: 1000px) {
  #loginform {
    width: 350px;
    margin: 0 0 0 -175px;
  }

  #emailcont {
    margin-top: 7vh;
  }

  #passwordcont {
    margin-top: -8vh;
  }

  #titlebar {
    display: none;
  }
}
