@import url("https://fonts.googleapis.com/css?family=Poppins");

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins",sans-serif;
}


body{
  background-color: #2ecc71; 
  height: 100%; 
  width: 100%;
}
.menu-btn{
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  display: none;
}

.navbar{
  position: sticky;
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  height: 80px;
  width: 100%;
  z-index: 999;
}

.navbar .logo {
  width: 150px;
  height: 80px;
  margin-left: 30px;

}
.navbar .logo img{
  width: inherit;
  height: 100%;
}

.navbar .menu li{
  list-style: none;
  display: inline-block;
}

.navbar .menu li a{
  display: block;
  margin-left: 20px;
  color: white;
  border-bottom: 4px solid transparent;
  text-decoration: none;
  font-size: 20px;
  font-size: 20px;
  font-weight: bold;
  padding: 6px 13px;
  border-radius: 3px;

}


.navbar .menu li a.active,
.navbar .menu li a:hover{
  background-color: white;
  color: #27ae60;
}

.navbar .menu li a i{
  color: #055423;
}
.navbar .menu li a i:hover{
  color: #055423;
}
main{
 display: flex;
 justify-content: center;
 align-items: center;
 margin-top: 120px;
 margin-bottom: 70px;
}

.form-box{
  width: 380px;
  height: 480px;
  position: relative;
 margin-top: 20px;
  background: #fff;
  padding: 5px;
  overflow: hidden;
  border-radius: 15px;
}
.button-box{
  width: 229px;
  margin: 35px auto;
  position: relative;
  box-shadow: 0 0 20px 9px #27ae60;
  border-radius: 30px;
  
}
.toggle-btn{
  padding: 10px 30px;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
  position: relative;
  font-size: 15px;
}
#btn{
  top: 0;
  left: 0;
  position: absolute;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, #27ae60,#2ecc71);
  border-radius: 30px;
  transition: .5s;
  color: #fff;
}

.input-group{
  top: 180px;
  position: absolute;
  width: 280px;
  transition: .5s;
}
.input-field{
  width: 100%;
  padding:10px 0;
  margin: 5px 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #999;
  outline: none;
  background: transparent;
}
input[type="checkbox"] {
  accent-color: #2c7c72;
 
}
.submit-btn{
  width: 85%;
  padding: 10px 30px;
  cursor: pointer;
  display: block;
  margin: auto;
  background: linear-gradient(to right, #27ae60,#2ecc71);
  border: 0;
  outline: none;
  border-radius: 30px;
  transition: 0.2s;
  font-size: 15px;
  color: #fff;
}

.submit-btn:hover {
  box-shadow: 0 0 0 4px #fff, 0 0 0 8px #27ae60;
}

.check-box{
  margin: 30px 10px 30px 0;
}
#span-checkbox-p{
  color: #777;
  font-size: 12px;
  font-weight: 700;
  bottom: 100px;
  position: absolute;
  margin-left: 10px;
}
#span-checkbox-t{
  color: #777;
  font-size: 12px;
  font-weight: 700;
  bottom: 66px;
  position: absolute;
  margin-left: 10px;

}
#forgot-pass{
  color: #777;
  font-size: 12px;
  font-weight: 700;
  bottom: 63px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  text-decoration: none;

}
#login{
  left: 50px;
}
#register{
  left: 450px;
}
@keyframes circle-swoop {
  from {
    clip-path: var(--circle-top-right-out);
  }
  to {
    clip-path: var(--circle-bottom-right-in);
  }
}

.--in-custom {
  --transition__duration: 1s;
  --transition__easing: ease-in-out;
  animation-name: circle-swoop;
}
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  position: relative;
  top: 23px;
}

/* responsive */
@media (max-width: 820px){

  .menu-btn{
      display: block;
      z-index: 999;
  }

  .menu-btn i.active::before{
      content: "\f00d";
  }
  
  .navbar {
    width: 100%;
    height: 50px;
  }
  .navbar .logo {
    width: 100px;
    height: 50px;
    margin-left: 15px;
  }

  .navbar .menu{
      position: fixed ;
      height: 100vh;
      width: 100%;
      left: -100%;
      top: 0;
      bottom: 0;
      background-color: #055423;
      text-align: center;
      padding-top: 80px;
      transition: all 0.3s ease;
  }
  .navbar .menu.active{
      left: 0;
  }

  .navbar .menu li{
      display: flex;
      justify-content: center;
  }

  .navbar .menu li a {
      margin: 10px 0;
      font-size: 25px;
  }
  
  main{
   padding: 10px;
  }
  .form-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  
  footer {
    padding: 10px;
    font-size: 13px;
  }
}

/* Medium screens */
@media only screen and (min-width: 821px) and (max-width: 991px) {
 
  
  .menu-btn{
    display: block;
    z-index: 999;
}

.menu-btn i.active::before{
    content: "\f00d";
}

.navbar {
  width: 100%;
  height: 70px;
}
.navbar .logo {
  width: 100px;
  height: inherit;
  margin-left: 15px;
}

.navbar .menu{
    position: fixed ;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    bottom: 0;
    background-color: #055423;
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
}
.navbar .menu.active{
    left: 0;
}

.navbar .menu li{
    display: flex;
    justify-content: center;
}

.navbar .menu li a {
    margin: 10px 0;
    font-size: 25px;
}

footer {
  padding: 10px;
  font-size: 20px;
}


}