@import url('https://fonts.googleapis.com/css2?family=La+Belle+Aurore&family=Lato:wght@400;700&family=Ubuntu:wght@500&display=swap');


:root {
    --debug: 1px solid red;
  /*-----primary colors--------*/
    --color-1: #18B887;
    --color-2: #41C19A;
    --color-3: #6ACAAD;
    --color-4: #93D3BF;
    --color-5: #BCDCD2;
    --color-6: #B7E4E2;
    --color-7: #E1F6F0;
    --color-8: #E5E5E5;
    --color-9: #F7FBFA;
    --color-10: #FFFFFF;
    --color-text-1: rgb(0, 0, 0);
    --color-text-2:  rgba(0, 0, 0, 0.568);
    --color-text-3: #3E4958;
  }

  *,
  *:before, 
  *:after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Ubuntu, 'Lato';
}

/* ----------HEADER----------------*/

.header-wrapper{
    grid-area: head;
    width: 100%;
    height: 74px;
    padding: 1em;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: var(--color-7);
}

/*-----------LOGO------------*/
.logo{  
    width: 249px;
    height: 65px;

    font-family: La Belle Aurore;
    font-style: normal;
    font-weight: normal;
    font-size: 35px;
    line-height: 65px;
    color: var(--color-1);
}

/*-----------NAVIGATION ITEMS------------*/

.hamburger-menu{
    display: none;
}

.navlinks{
    height: 45px;

    font-family: 'Ubuntu', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
}

.nav-items ul{
    height: 10px;

    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
}

.nav-items li a{
    text-decoration: none;
    color: var(--color-text-1);
    margin-right: 2em;
}

.nav-items ul li a:hover{
    color: var(--color-2);
}

.nav-items span{
  color: var(--color-1);
}



/* Forgot PASSWORD-------- */
.Forgot-Password {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2em 0;
    height: 100%;
}
.Password-Right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2em;
}
.Password-Right h1 {
    width: 280px;
    height: 132px;
    font-family: 'Lato';
    color: #000000;
    font-weight: bold;
    /* position: relative; */
    
    /* width: 30%; */

    font-size: 50px;
    margin-bottom: 1rem;
}
.Password-Right h2 {
    width: 453px;
    height: 67px;
    color: #443742;
    font-family: 'Lato';
    font-size: 20px;
    font-weight: normal;
}

.Password-Left {
    width: 50%;
    height: 70%;
}

img {
    /* background-size: cover; */
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    width: 320px;
    height: 76px;
    border: 1px solid rgba(18, 107, 80, 0.5);
    box-sizing: border-box;
    border-radius: 10px;
    padding-left: 1em;
    margin-bottom: 2em;
}


button {
    width: 140px;
    height: 46px;
    border-radius: 10px;
    border: none;
    background-color: var(--color-1);
    margin-left: 6em;
}
a {
    text-decoration: none;
    color: var(--color-10);
}

@media screen and (max-width:900px) {

    /*-----------HEADER ITEMS------------*/
  
      .header-wrapper{
          
        width: 100%;
        height: 35px;
        padding: 2em;
    }
  
    /*-----------LOGO------------*/
  
    .logo{  
        width: 200px;
        height: 45px;
  
        font-size: 24px;
        line-height: 35px;
    }
  
    /*-----------NAVIGATION ITEMS------------*/
  
  
  
    /*-----------RESPONSIVE HAMBURGER MENU------------*/
  
    .hamburger-menu{
        display: flex;
        flex-direction: column;
  
        position: absolute;
        right: 3%;
        top: 3%;
  
        cursor: pointer;
    }
  
    /* .navlinks{
        flex-direction: row;
        align-items: center;
        font-size: 14px;
        line-height: 19px;
    } */
  
    .line{
        width: 40px;
        height: 4px;
        margin: 3px;
      
        transition: all .7s;
  
        background-color: var(--color-text-1);
    }
  
    .nav-items ul {
        flex-direction: column;
        height: 50vh;
        width: 60%;
        background-color: #fff;
        justify-content: center;
        /* align-items: center; */
        right: -0.5em;
        top: -35em;
        transition: top 1s;
        margin: 5px;
        position: absolute;
      }
  
      .ham .nav-items ul{
        right: -1em;
        top: -0.5em;
      }
  
      .nav-items ul li a{
        margin-bottom: .5em;
        display: block;
      }    
  
    .ham .line1{
        transform: rotateZ(-45deg) translate(-7px, 7px);
    }
  
    .ham .line2{
        opacity: 0;
    }
  
    .ham .line3{
        transform: rotateZ(45deg) translate(-7px, -7px);
    }

    /* -------  INPUT YOUR RESPONSIVE CODE SHERE------- */



    /*---------------FOOTER-------------------------*/
  
    .footer-links{
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      text-align: center;
  
      width: 100%;
    }
  
    .community-column{
    padding: 2em;
    }
  
    .community-column ul{
      list-style: none;
    }
  
    .community-column li{
      margin: .5em;
      font-size: 14px;
    }
  
    .community-column li a{
      text-decoration: none;
      color: var(--color-text-2);
    }
  
    .community-column h3{
      width: auto;
    }
  
    .break-line2{
      width: 300px;
    }
  
    footer p{
      font-size: 14px;
    }
  
  
  }

  /*Media Query*/
 @media screen and (max-width:768px) {
     
     .header-wrapper {
         height: 20px;
     }
     .logo {
         height: 30px;
         /* margin-left: 6rem; */
     }
     .hamburger-menu {
         right: -2%;   
     }
     .nav-items ul {
         background-color: transparent;
         width: 20%;
     }

     /* Forgot Password Container */

     .Forgot-Password {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    
    .Password-Right {
        height: fit-content;
    }

     .Password-Right h2 {
         font-size: 17px;
         /* text-align: center; */
     }

     .Password-Right h1 {
         font-size: 35px;
         height: 60px;
         width: 300px;
     }
     input {
         width: 250px;
         right: 15%;
     }

     .Password-Left {
         width: 100%;
     }
     img {
         /* background-size: cover; */
         width: 100%;
     }

     
 }