* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Trickster";
  src:
    url(./media/fonts/Gotham/Gotham\ Rounded\ Medium.otf)
}


a {
  color: #EE8C46;
  text-decoration: none;
}

.signupDiv .loginlink h4 span {
  color: #EE8C46;
  text-decoration: underline;
}

#logo {
  cursor: pointer;
}

#signUpBtn {
  height: 40px;
  width: 150px;
  margin-top: 15px;
  background-color: #EE8C46;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  font-family: 'poppins';
  cursor: pointer;
}

#addbtn {
  height: 35px;
  width: 80px;
  margin-top: 15px;
  background-color: #EE8C46;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  font-family: 'poppins';
  cursor: pointer;
}

#loginbtn {
  height: 40px;
  width: 150px;
  margin-top: 15px;
  background-color: #EE8C46;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  font-family: 'poppins';
  cursor: pointer;
}

#input {
  width: 450px;
  height: 50px;
  padding-left: 15px;
  border-radius: 5px;
  border: black .5px;
  margin: 8px 0px;
}

#username,
#password,
#email,
#loginEmail,
#loginPassword {
  width: 450px;
  height: 50px;
  padding-left: 15px;
  border-radius: 5px;
  border: black .5px;
  margin: 8px 0px;
}

#username::placeholder,
#password::placeholder,
#email::placeholder {
  padding-left: 15px;
  font-family: 'poppins';
  font-size: 16px;
}


body {
  position: relative;
  background-color: #E3EDF7;
  display: flex;
  justify-content: center;
  overflow: hidden;

}

.header {
  width: 100%;
  height: 100px;
  position: absolute;
  margin-top: 30px;
  padding-left: 250px;
  font-size: 36px;
  font-family: 'gotham rounded';
  display: flex;
}

.menu #headerbtn {
  width: 100px;
  height: 40px;
  margin: 25px 8px;
  border-radius: 8px;
  border: none;
  background-color: #EE8C46;
  color: #061237;
  font-size: 16px;
  font-family: 'gotham rounded';
}

.menu {
  margin-left: 800px;
}

.menu #logOutBtn {
  width: 100px;
  height: 40px;
  margin: 25px 8px;
  background: #E3EDF7;
  border-radius: 8px;
  box-shadow: inset -3px -3px 7px #FFFFFF,
    inset 3px 3px 7px rgba(136, 165, 191, 0.48);

  font-size: 16px;
  font-family: 'gotham rounded';
}

h1 {
  color: #061237;
}

.header img {
  height: 50px;
}

#authSection {
  display: inline-flex;
  flex-direction: row;
  margin-top: 250px;
  width: 100%;
  height: 600px;
}

.authForm {
  position: absolute;
  width: 600px;
  text-align: left;
  margin-left: 475px;
}

.loginlink {
  margin-bottom: 8px;
  font-family: 'gotham rounded';
  font-size: 24px;
}

#authSection .loginAuthForm {
  position: absolute;
  width: 600px;
  height: 350px;
  padding-left: 25px;
  border-left: 3px black solid;
  margin-left: 950px;
}

.userLists {
  width: 800px;
  justify-content: center;
  margin-top: 250px;
}

#listbox {
  height: fit-content;
  padding: 30px 50px;
  margin: 15px 50px;
  background: #E3EDF7;
  box-shadow: inset -3px -3px 7px #FFFFFF,
    inset 3px 3px 7px rgba(136, 165, 191, 0.48);
  border-radius: 16px 16px 16px 16px;
  font-family: 'gotham rounded';
}

.userLists h1 {
  padding-left: 0px;
  margin-bottom: 10px;
}

@media (max-width: 1000px) {

  body {
    overflow: hidden;
  }

  .header #logo {
    font-size: 36px;
    font-family: "Trickster";
  }

  .header {
    display: block;
    width: 100%;
    position: absolute;
    margin-top: 30px;
    padding: auto;
    font-size: 36px;
    font-family: 'gotham rounded';
    text-align: center;
  }

  .header img {
    height: 28px;
  }

  .menu {
    margin: auto;
    margin-top: 30px;
    padding: auto;
    display: flex;
    justify-content: center;
  }

  #btn1 {
    height: 40px;
    width: 150px;
    margin-top: 15px;
    background-color: #EE8C46;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-family: 'poppins';
  }

  input {
    width: 150px;
    height: 35px;
    border-radius: 5px;
    border: black .5px;
    margin-bottom: 15px;
  }

  input::placeholder {
    padding-left: 15px;
    font-family: 'poppins';
    font-size: 16px;
  }

  #authSection {
    width: 400px;
  }

  #authSection .authForm {
    position: absolute;
    width: 350px;
    text-align: center;
    margin-left: auto;
  }

  .loginlink {
    margin-bottom: 8px;
    font-family: 'gotham rounded';
    font-size: 24px;
  }

  #authSection .loginAuthForm {
    position: absolute;
    /* justify-content: center; */
    text-align: center;
    width: 350px;
    height: 350px;
    padding-left: 25px;
    border-left: 3px black solid;
    margin-left: auto;
  }

  #username,
  #password,
  #email,
  #loginEmail,
  #loginPassword {
    width: 300px;
    height: 50px;
    padding-left: 15px;
    border-radius: 5px;
    border: black .5px;
    margin: 8px 0px;
  }

  #signUpBtn {
    height: 40px;
    width: 300px;
    margin-top: 15px;
    background-color: #EE8C46;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-family: 'poppins';
    cursor: pointer;
  }

  #username::placeholder,
  #password::placeholder,
  #email::placeholder {
    padding-left: 15px;
    font-family: 'poppins';
    font-size: 16px;
  }

  #loginbtn {
    height: 40px;
    width: 300px;
    margin-top: 15px;
    background-color: #EE8C46;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-family: 'poppins';
    cursor: pointer;
  }


  body {
    position: relative;
    background-color: #E3EDF7;
    display: flex;
    justify-content: center;
    overflow: scroll;

  }

  .header {
    width: 100%;
    /* position: absolute; */
    margin: 30px auto;
    padding: 0;
    font-size: 36px;
    font-family: 'gotham rounded';
    text-align: center;
  }

  #authSection {
    margin-top: 250px;
    width: 100%;
    height: 600px;
    padding: 40px 40px;

  }

  .authForm {
    position: absolute;
    max-width: fit-content;
    text-align: left;
    margin: auto;
    /* padding: 0px 25px; */
    justify-content: center;
  }

  .loginlink {
    margin-bottom: 8px;
    font-family: 'gotham rounded';
    font-size: 24px;
  }

  #authSection .loginAuthForm {
    position: absolute;
    max-width: fit-content;
    height: 350px;
    /* padding: auto; */
    margin: auto;
    margin-top: 350px;
    padding: 0;
    padding-top: 40px;
    border: none;
    border-top: 3px black solid;
  }

  .userLists {
    width: 800px;
    justify-content: center;
    margin-top: 250px;
  }

  #listbox {
    height: fit-content;
    padding: 30px 50px;
    margin: 15px 50px;
    background: #E3EDF7;
    box-shadow: inset -3px -3px 7px #FFFFFF,
      inset 3px 3px 7px rgba(136, 165, 191, 0.48);
    border-radius: 16px 16px 16px 16px;
    font-family: 'gotham rounded';
  }

  .userLists h1 {
    padding-left: 0px;
    margin-bottom: 10px;
  }
}