*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;

}
body{
    height: 100%;
    background: radial-gradient(#ebeef3, rgb(225, 226, 228));
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-content: center;
} 

form{
    height: 100%;
    width: 500px;
    padding: 40px;
    border-radius: 8px;
    background-color: #e2e7ee;
    box-shadow: 4px 4px 1px rgba(235, 222, 222, 0.404);

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
h1{
    color: rgb(163, 158, 158);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 30px;

    background-image: linear-gradient(to right, rgb(223, 219, 224), rgb(169, 168, 172));
    background-size: 100% 4px;
    background-position: bottom;
    background-repeat: no-repeat;
    line-height: 60px;
}
label{
    padding: 5px;
    height: 10px;
    color: #0a0a0a;
    font-size: 18px;
    text-align:left;
    display: block;
    margin-right: auto;
}

.inputs_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
input{
    height: 50px;
    width: 200px;
    margin: 5px;
    padding: 0px 25px;
    border-radius: 10px;
    border: none;
    background: rgb(242, 242, 248);
    box-shadow: 3px, 3px, 6px rgba(189, 184, 184, 0.212); 
    color: rgb(14, 13, 13);
    font-size: 20px;
    transition: 0.2s;

}
textarea{

    height: 100px;
    width: 240px;
    margin: 15px;
    padding: 0px 25px;
    border-radius: 10px;
    border: none;
    background: rgb(242, 242, 248);;
    box-shadow: rgb(242, 242, 248);
    color: rgb(125, 125, 126), rgb(178, 178, 185);
    font-size: 20px;
    transition: 0.2s;
  
    

}
textarea:hover{
    background-color: #d9dce0;
    color:rgb(22, 21, 21);
}


input:hover{
    background-color: #d9dce0;
    color:rgb(22, 21, 21);
}
textarea:focus{
    outline: none;
    background-color: #eaedf1; 
    width: 265px;
}

input:focus{
   outline: none;
   background-color: #f8fafc; 
   width: 265px;
}
input::placeholder{
    color: rgb(159, 161,190);

}

button{
    height: 50px;
    width: 180px;
    border-radius: 1000px;
    border: none;
    color: white;
    font-family: sans-serif;
    font-size: 22px;
    background: linear-gradient(to right, rgb(125, 125, 126), rgb(178, 178, 185));

}
button:hover{
    width: 200px;
    
}
button:focus{
    outline: none;
    width: 200px;
}
@media(max-width: 65px){
    form{
        height: 100%;
        width: 100%;
        justify-content: center;
    }
    .inputs_container{
        margin: 70px;
       
    }
    h1{
        font-size: 32px;
    }
}