@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
body{
    font-family: 'Lato', sans-serif;
}
nav{
    /* width: 100%; */
    height: 75px;
    background-color: white;
    /* position: fixed; */
    z-index: 2;
    padding: 16px 30px;
    align-items: center;
    box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.065);
    /* display: none; */
}
.checkbtn{
    float: right;
    font-size: 26px;
    display: none;
}
#check{
    display: none;
}
nav .logo{
    float: left;
    color: #03A63C;
    font-size: 30px;
    font-weight: 700px;
}
nav .links{
    float: right;
    display: flex;
}
nav .links ul{
    display: flex;
    line-height: 34px;
}
nav .links ul li{
    padding: 0 20px;
}

.links ul li a{
color: #141414;
transition: ease-out 0.3s;
font-family: 'Segoe UI'
}
.links ul li a:hover{
color: #03A63C;
} 
.container{
    background-color: white;
    box-shadow: -8.47242px 5.08345px 25.4173px rgba(0, 0, 0, 0.2);
    width: 404px;
    height: 600px;
    justify-items: center;
    text-align: center;
    align-items: center;
    padding: 30px 52px;
    margin: 20px auto;
    border-radius: 4px;
}
.main-1 h1{
    color: #03A63C;
    margin-bottom: 22px;
    font-size: 25px;
}
.main-1 p{
    margin-bottom: 4px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
}
.main-1 h2{
    margin-bottom: 22px;
    font-family: 'Calisto MT';
}
.sub-main-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.sub-main-1 p{
    font-size: 14px;
    color: #939393;
    position: relative;
}
.sub-main-1 p::before{
    content: '';
    width: 100%;
    height: 2.5px;
    background-color: #03A63C;
    position: absolute;
    top: 20px;
}
.sub-main-1 p::before{
    transform: scale(0,1);
    transition: transform 0.3s ease;
}
.sub-main-1 p:hover:before{
    transform: scale(1,1);
}
.sub-main-1 p:hover{
    color: black;
    cursor: pointer;
}
.form-table{
    display: block;
}
form label{
    margin: 10px 0;
    float: left;
    color: #141414;
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 400;
}
form .inpu1{
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}
form .inpu2{
    width: 100%;
    padding: 10px;
    border-radius: 4px;
}
.remember-password{
    display: flex;
    justify-content: space-between;
}
.remember-password p{
    font-size: 12px;
    color: #141414;
    margin-top: 10px;
}
.remember-password a{
    font-size: 12px;
    color: #03A63C;
    margin-top: 10px;
}
.form-table button{
    margin-top: 20px;
    width: 100%;
    padding: 8px;
    border: none;
    background-color: #03A63C;
    color: white;
    border-radius: 4px;
}
.form-table button:hover{
    background-color: #049136;
    cursor: pointer;
}
.form-table H6{
    font-size: 13px;
    letter-spacing: 0.005em;
    color: #B38200;
    margin: 14px 0;
}
.social-media{
    display: flex;
    justify-content: space-evenly;
    margin: 0 70px;
    cursor: pointer;
}
.social-media #facebook{
    color: blue;
    font-size: 34px;
    padding: 8px;
    background-color: white;
    border-radius: 50%;
    box-shadow: -8.47242px 5.08345px 25.4173px rgba(0, 0, 0, 0.282);
}
.social-media #google{
    color: red;
    font-size: 34px;
    padding: 8px;
    background-color: white;
    border-radius: 50%;
    box-shadow: -8.47242px 5.08345px 25.4173px rgba(0, 0, 0, 0.282);
}

.no-account{
    color: black;
    font-size: 13px;
    margin-top: 20px;
}
.no-account a{
    color: #03A63C;
    font-weight: 700;
}
.no-account a:hover{
    color: #049136;
}

@media screen and (max-width: 400px) {
    body{
        padding: 10px 20px;
    }
    nav{
        display: block;
        width: 100%;
        padding: 40 40px;
        /* z-index: 2; */
     }
     .checkbtn{
         display: block;
     }
      .links{
         flex-direction: column;
         width: 100%;
         height: 100vh;
         background-color: white;
         right: -100%;
         position: fixed;
         top: 72px;
         text-align: center;
         align-items: center;
         transition: 0.5s ease-out;
         z-index: 4;
     }
 
     nav .links ul{
         display: block;
         line-height: 56px;
     }  
 nav .btn{
    padding: 10px 0;
    margin: 0px;
    width: 100%;
 } 
     #check:checked ~ .links{
         right: 0;
     }
    .container{
        width: 100%;
        height: 600px;
        padding: 20px 20px;
    }
    .social-media{
    margin: 0 40px;
   }
}