body {
  margin: 0;
  padding: 0;
  zoom: 80%;
  overflow: hidden;
}

.thepages {
 visibility: hidden;
}

.page {
  text-decoration: none;
  color: black;
  font-size: 22px;
}

form {
  display: none;
}
form.active {
  display: block;
}

label {
  display: block;
  margin-bottom: 10px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: white;
  z-index: 1002; 
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-link {
  text-decoration: none;
  color: rgb(42, 32, 32);
}

.navbar-link {
  text-decoration: none;
  color: rgb(42, 32, 32);
}

.logo {
  height: 70px;
  width: 200px;
  position: absolute;
  top: 5px;
  left: 45%;
}

.nav-icons {
  position: absolute;
  display: flex;
  top: 27px;
  gap: 19%;
  font-family: sans-serif;
  right: 172px;
  font-size: 18px;
}

.nav-icons i {
  font-size: 19px;
  color: #262a32;
}

.category-link:hover {
  border-bottom: 2px solid #000;
}

.nav-links {
  position: absolute;
  display: flex;
  top: 33px;
  gap: 14%;
  font-family: sans-serif;
  left: 43px;
  font-size: 18px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  display: block;
  width: 567px;
  padding: 10px 0;
  margin-bottom: 10px;
  background-color: transparent;
  box-sizing: border-box;
  border: none;
  outline: none;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-contacts-auto-fill-button,
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-inner-spin-button,
input[type="password"]::-webkit-outer-spin-button {
  display: none;
}

button[type="submit"] {
  display: block;
  width: 92%;
  padding: 10px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 72px;
}

button[type="submit"]:hover {
  background-color: #3e8e41;
}

button[type="submit"] a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 15px;
}

.toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.toggle button {
  background-color: #ccc;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
}

.toggle button.active {
  background-color: #4CAF50;
  color: #fff;
}

.about-container {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
}

.login-container {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
}

.login {
  border: 2px solid white;
  padding: 12px;
}

.toggleIcon {
  margin-left: 8px;
  cursor: pointer;
}

.inputStyle {
  width: 350px;
  padding: 10px 0;
  margin-bottom: 1px;
  background-color: transparent;
  box-sizing: border-box;
  border: none;
  outline: none;
  overflow: hidden;
}

.fa-envelope {
  position: absolute;
  top: 21%;
  right: 70px;
  transform: translateY(-50%);
}

.fa-eye-slash, .fa-eye {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  cursor: pointer;
}

hr {
  width: 90%;
  border: 1px solid black;
  margin-left: 0px;
}

.delete {
  cursor: pointer;
  font-size: 25px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.password {
  margin-top: 53px;
}

.checkbox {
  margin-top: 43px;
  background-color: transparent;
}

.no-account {
  margin-top: 43px;
  margin-left: 59px;
}

.sign-up-link {
  text-decoration: none;
  font-weight: bold;
  color: black;
}

.remember-me {
  position: absolute;
  top: 324px;
  left: 44px;
}

.forget-password {
  position: absolute;
  top: 324px;
  left: 400px;
}

.login-title {
  position: absolute;
  top: -30px;
  left: 10px;
  font-size: 38px;
}

.outer-container {
  display: flex;
  justify-content: center; 
  align-items: center;   
  padding-left: 35px;
  margin-right: 0;
  overflow: hidden;
}

.container {
  position: absolute;
  top: 229px;
  padding: 52px 0;
  height: 528px;
  width: 589px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.fa-bars-staggered {
  visibility: hidden;
}

.hide {
  display: none;
}
.menu-links {
  visibility: hidden;
}
@media only screen and (max-width: 700px) {
  .about-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 6px;
    font-size: 15px;
  }
  
  .login-container {
    position: absolute;
    margin-left: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 6px;
    font-size: 15px;
  }
  
  .thepages {
    position: absolute;
    display: none;
    flex-direction: column;
    row-gap: 28px;
    font-weight: bold;
    background-color: rgb(220, 220, 211);
    top: 11%;
    z-index: 1000000;
    padding: 30px;
    right: 288px;
    visibility: visible;
  }
  
  .nav-links {
    display: none;
  }
  
  .logo {
    position: absolute;
    left: 10px;
    top: 13px;
    height: 62px;
    width: 113px;
  }
  
  .fa-bars-staggered {
    position: absolute;
    top: 33px;
    right: 7%;
    visibility: visible;
    color: black;
    font-size: 25px;
  }
  
  .menu-links {
    position: absolute;
    display: flex;
    flex-direction: column;
    row-gap: 28px;
    font-weight: bold;
    padding: 50px 155px;
    background-color: rgb(220, 220, 211);
    margin-top: 22px;
    right: 5%;
    font-size: 22px;
    z-index: 1000;
    visibility: visible;
  }
  
  .hide {
    display: none;
  }
  
  .menu-link {
    text-decoration: none;
    color: black;
    font-size: 22px;
  }
  
.outer-container {
    margin-left: 10px;
    padding: 0;
}

.container {
  position: absolute;
  top: 229px;
  padding: 0;
  height: 588px;
  width: 409px;
  overflow: hidden;
}

  .fa-envelope {
    position: absolute;
    top: 19%;
    left: 370px;
  }
  
  .fa-eye-slash, .fa-eye {
    position: absolute;
    top: 48%;
    left: 360px;
    cursor: pointer;
  }
  
  hr {
    width: 98%;
    border: 1px solid black;
    margin-left: 0px;
  }
  .forget-password {
    position: absolute;
    top: 317px;
    left: 270px;
  }
  button[type="submit"] {
    display: block;
    width: 98%;
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 42px;
    margin-left: 7px;
  }

  .checkbox {
    margin-left: 13px;
  }
  input[type="email"],
  input[type="password"],
  input[type="text"] {
    display: block;
    width: 390px;

    
}
.remember-me {
  position: absolute;
  top: 317px;
  left: 44px;
}

.login-title {
  position: absolute;
  top: -30px;
  left: 10px;
  font-size: 38px;
}
}
