*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
form{
    position: relative;
}
.fixed{
    position: absolute;
    left: 50%;
    transform: translate(-50%,10%); 
    background-color: rgb(163 163 163);
    padding: 50px 100px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 10px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
input{
    display: block;
    margin: 22px 0;
    padding: 5px 30px;
    border: 1px solid black;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s ease;

}
input:focus{
    color:  rgb(82 82 82);
    box-shadow: rgba(212, 45, 45, 0.2) 0px 7px 29px 0px;
    transform: scale(1.07);
}
h2{
    margin: 0 0 30px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.wrapper{
    overflow: hidden;
}
.btn{
    border: 0;
    margin: 20px 0 0 0;
    background-color: rgb(82 82 82);
    color: white;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
.btn:hover{
    color:  rgb(82 82 82);
    background-color: white;
    border: 1px solid  rgb(82 82 82);
    border-radius: 5px;
}
.wrapper:hover .btn{
    transform: scale(1.01);
}
.check{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0;
}
.check input {
    margin: 0;
}
.check i{
    position: absolute;
    top: 7px;
    right: 0;
    margin-right: 5px;
    color: rgba(0, 0, 0, 0.428);
}