* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: rgb(240, 239, 239);
}

@keyframes animate {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.nav-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 20px;
  height: 70px;
  border-radius: 2px;
  transition: all 0.7s;
  position: relative;
  color: black;
  background-color: white;
  box-shadow: 3px 3px 3px 3px rgb(196, 192, 192);
}

.menu-top {
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  color: white;
}

.getStarted_btn {
  width: 120px;
  height: 40px;
  background-color: rgb(46, 252, 46);
  border-radius: 10px;
  outline: none;
  border-style: none;
  cursor: pointer;
  transition: all 0.5s;
  font-family: 'Poppins', sans-serif;
}

.get {
  transition: all 0.5s;
}


.menu-top a {
  cursor: pointer;
  text-decoration: none;
  font-size: small;
  transition: all 0.5s;
}

.menu-top a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}


.signup_div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  width: 400px;
  height: fit-content;
  margin: auto;
  padding: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
  animation: animate 1s ease-in-out;
}

.login_input_email,
.login_input_password,
.signup_input_username,
.signup_input_password,
.signup_input_fullname,
.signup_input_emailaddress,
.signup_input_mobile {
  width: 250px;
  height: 40px;
  border-radius: 5px;
  border-style: none;
  padding: 5px;
  text-align: center;
  transition: all 0.5s;
  opacity: 0.7;
  outline: none;
  background-color: rgb(227, 255, 227);
}

.login_input_email:focus,
.login_input_password:focus,
.signup_input_username:focus,
.signup_input_password:focus,
.signup_input_fullname:focus,
.signup_input_emailaddress:focus,
.signup_input_mobile:focus {
  opacity: 1;
  background-color: rgb(182, 255, 182);
}

.login_text {
  text-align: center;
  margin-top: 50px;
}

.signup_text {
  text-align: center;
  margin-top: 20px;
}

.login_btn,
.sign_btn,
.prod_btn,
.forgot_btn {
  width: 120px;
  height: 40px;
  background-color: rgb(8, 248, 8);
  border-radius: 30px;
  border-style: none;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.5s;
  opacity: 0.7;
}

.forgot_btn {
  width: 150px;
}

.login_btn:hover,
.sign_btn:hover,
.prod_btn:hover,
.forgot_btn:hover {
  transform: translateY(2px);
  opacity: 1;
}

.login_btn:active,
.sign_btn:active,
.prod_btn:active,
.forgot_btn:active {
  transform: translateY(4px);
  opacity: 1;
}

.login_div,
.forgot_password_div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  width: 400px;
  height: fit-content;
  margin: auto;
  padding: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
  animation: animate 1s ease-in-out;
}



.forgot_password_email {
  width: 300px;
  height: 40px;
  background-color: rgb(217, 255, 209);
  border-style: none;
  border-radius: 10px;
  text-align: center;
  opacity: 0.7;
  outline: none;
  transition: all 0.5s;
}

.forgot_password_email:focus {
  opacity: 1;
}

.forgot_pass,
.signup_pass {
  font-size: small;
}



.footer {
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgb(236, 234, 234);
  height: 500px;
  justify-content: center;
  align-items: center;
}

.footer_links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.footer_links a {
  color: black;
  text-decoration: none;
  transition: all 0.5s;
}

.footer_links a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.socials {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.socials a {
  transition: all 0.5s;
}

.socials a:hover {
  opacity: 0.5;
}







@keyframes loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.loading {
  margin-top: 5px;
  width: 20px;
  animation: loading 2.2s infinite;
}




























.hide {
  display: none;
}