*{padding: 0;margin: 0;font-family: tahoma;}
body{

    text-align: center;
    background: rgb(255, 236, 174);
}
form{
    border-radius: 15px;
    border:1px solid #000;
    width: 400px;
    height: 300px;
    margin: calc(50vh - 150px) auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
input:focus{
    outline: none;
}
input{
    width: 80%;
    font-family: tahoma;
    padding: 5px 7px;
}
input[type="submit"]:hover{
    cursor: pointer;
}
input[type="submit"]{
    background: transparent;
    padding: 10px;
    border-radius: 15px 2px;

}