@import url('https://fonts.googleapis.com/css2?family=Acme&family=Handjet&family=Inconsolata&family=Inter&family=Noto+Sans:wght@400;700&family=Roboto+Mono:ital@1&display=swap');


 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
}



main{
    border:1px solid rgba(0, 0, 0, 0.055);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

h1{
    
    font-weight: 100;
    font-size:x-large;
}

.icon img{
    width: 49px;
    height: 49px;
    
}


form{

    background: #f5f5f5d0;
    width: 315px;
    height: 234px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    border-radius: 5px;
    border: 2px solid #0000001a;
    font-size: small;
}

 label{
    width: 271px;
    margin: 10px 0px;
}

label a{
    padding-left: 95px;
}

input{
    width: 280px;
    border: none;
    border-radius: 8px;
    padding: 5px;
    color: #000000;
    font-size: 12pt;
    outline: none;
    border: 2px solid #0000001a;

}

input:focus{
    border-color: blue;
}


button{
    width: 275px;
    height: 40px;
    align-items: center;
    text-align: center;
    border: none;
    border-radius: 5px;
    padding: 5px;
    color: #f3f3f3;
    font-size: 12pt;
    outline: none;
    border: 2px solid transparent;
    font-weight: 500;
    cursor: pointer;
    background: rgb(3, 138, 3)
}

.card{
    background: #ffffff;
    font-size: small;
     width: 315px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 20px;
    border-radius: 10px;
    border: 2px solid #0000001a;
}

footer{
    width: 10px 0px;
    height: 35%;
    margin: 8px 0 0px 8px;
    font-size: small;
    
}

li{
   display: inline;
   list-style: none;
   flex-direction: inherit;
   align-items: center;
   margin: 0 5px 0px 5px;

}

a{
    text-decoration: none;
}

button:hover{
    background: rgb(14, 117, 14);
}