@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: 450px;
    justify-items: center;
    text-align: center;
    align-items: center;
    padding: 60px 52px 60px;
    margin: 50px auto;
    border-radius: 5px;
}
.main-1 h1{
    color: #03A63C;
    margin-bottom: 16px;
    font-size: 25px;
}
.main-1 h2{
    margin-bottom: 18px;
}
.main-1 p{
    margin-bottom: 20px;
    font-size: 12px;
}

.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: 8px;
}
form .inpu1:hover{
    border: 1px solid #03A63C;
}

form a{
    font-size: 12px;
    color: #03A63C;
    float: left;
    margin-top: 8px;
}
.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;
}
.try-another-way{
    color: #03A63C;
    font-size: 12px;
    float: left;
    margin-top: 14px;
}
@media screen and (max-width:400px) {
    body{
        padding: 0 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: 450px;
        padding: 20px 20px;
    }
}