.formu{
    height:100%;
    background: #222831;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:cover;
    display:flex;
    justify-content: center;
    align-items: center;
}


form{
    height:575px;
    width:500px;
    padding: 40;
    border-radius: 8px;
    
    background-color: #222831;
    box-shadow: 4px 4px 1px rgb(0,0,0,0.404);
    
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    
    
}

h1{
    color: white;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size:38px;
    background-image: linear-gradient(-55deg, #3b972c 29%,   #3b972c 68.1%, #f8dc48 29.1%, #d63031 68%);
    background-size: 100% 4px;
    background-position:bottom;
    background-repeat:no-repeat; 
    line-height: 60px;   
    }
.inputs_container{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center; 
}
input{
    height:64px;
    width:240px;
    margin: 15px;
    padding:0px 25px;
    border-radius:10px;
    border: none;
    background-color:#373e49;
    box-shadow: 3px 3px 6px rgb(0,0,0,0.212);
    color: white;
    font-size: 20px;
    transition: 0.2s;
    
}
input:hover{
    background-color:#47505f;
}
input:focus{
    outline: none;
    background-color:#47505f;
    width: 265px;
}
input::placeholder{
    color: rgb(250, 250, 250);
}
button{
    height:64px;
    width: 140px;
    border-radius: 1000px;
    border:none;
    color: white;
    font-family: sans-serif;
    font-size:22px;
    background-image: linear-gradient(-55deg, #3b972c 29%, #f8dc48 29.1%, #d63031 68%, #3b972c 68.1%);
    transition: 0.2s;
}
button:hover{
    width: 200px;
}
button:focus{
    outline: none;
    width: 200px;
}

@media(max-width: 650px){
    form{
        height:100%;
        width:100%;
        justify-content: center;
    }
    .inputs_container{
        margin:80px;
    }
    h1{
        font-size:32px;
    }
}    
