*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url("https://cdn.pixabay.com/photo/2022/07/10/02/32/ducks-7312081_960_720.jpg");
    background-size: cover;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    /* margin-top: 30px; */
    /* border: 10px; */
    width: 100%;
    
}
input {
    text-align: center;
    width: 180px;
    height: 30px;
    border-radius: 5px;
    border-style: solid;
    border: 1px solid grey ;

}
h1{
    margin-top: 30px; 
    color: azure;
    font-family: 'Montserrat', sans-serif;
}
label{
    display: inline-block;
    width: 120px; 
    text-align: left;
    font-weight: bold;

    }
    

form{
    margin-top: 15px;
    background-color: #FBAB7E;
    background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
    text-align: center;
    width: fit-content;
    padding: 20px;
    display: inline-block; 
    border-radius: 15px; 
    
}
.div{
    margin: 20px 20px; 
}
/* input[type=submit],input[type=reset]{
    width: 120px;
    height: 40px;
    border-radius: 15px ;

} */
.buton input{
    
    width: 120px;
    height: 40px;
    border-color: palevioletred;
    border-radius: 15px;
    background-color: palevioletred;
    font-weight: bold;

}
.buton :hover{
    cursor: pointer;
    background-color:forestgreen;
    border-color: forestgreen;
    color:antiquewhite;
}