*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{

    background-color: whitesmoke;
    margin: 0;
    font-size: 1rem;
    font-family: 'poppins', 'sans-serif';
 
}
.logo{
    display: flex;
    justify-content: center;
}
img{
    width: 200px;
    margin: 10px;
}
.info{
    display: flex;
    justify-content: center;
    gap: 15px;
}
a{
    color: blue;
    text-decoration: none;
    
}
form{
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 600px;
    margin-top: 20px;
}
.form-group{
    display: flex;
    justify-content: center;
}
.sign-title{
    color: #503f3f;
    font-size: 14px;
}
footer{
    margin-top: 10px;
}
select{
    height: 40px;
    width: 100%;
    padding-left: 5px;
}
footer .button{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2f4f4f;
    width: 100%;
    text-align: center;
    height: 40px;
    padding-bottom: 10px;
    text-decoration: none;
    border-radius: 3px;
    color: #fff;
    font-size: 0.9rem;
}
input{
    padding: 10px;
    border: 1px solid lightgrey;
    background-color: #f5f5f5;
    border-radius: 3px;
}
footer .button:hover{
    background-color: #3e5757;
    cursor: pointer;
}
p small{
    padding-left: 5px;
}
label{
    padding-left: 5px;
}
.foot1 a{
    text-decoration: underline;
}
@media (max-width:550px) {
    form{
        padding-left: 5px;
        padding-right: 9px;
    }
    .info{
       font-size: 0.9rem;
       gap: 3px;
    }
    p small {
       
        font-size: 0.8rem;
    }

}