body{
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient( rgb(9, 9, 69),rgb(51, 148, 245));
}


form{
    border: 2px solid rgb(179, 179, 179);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 5px 4px 8px rgb(255, 246, 165);
    height: 50vh;
    width: 28vw;
    text-align: center;
    background-color: rgb(23, 119, 222);
}

input{
    border: 0.75px rgb(255, 255, 255) solid;
    border-radius: 5px;
    padding: 3px;
    margin-left: 20px;
    margin-top: 45px;
    background: transparent;
    color: white;
    font-weight: 700;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 1px 1px;
}

label{
    width: 50px;
    font-weight: 700;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(0, 0, 0);
    margin-left: 7px;
}

button{
    padding: 8px;
    border: 2px solid white;
    border-radius: 10px;
    margin-top: 50px;
    width: 110px;
    background-color: rgb(255, 239, 98);
    box-shadow: 4px 5px 3px;
    font-weight:bolder;
    font-size:medium;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}
button:hover{
     background-color: chartreuse;
}