body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body form{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px
}

body form input{
    border: none;
    border-radius: 10px;
    background-color: #eee;
    padding: 10px;
    width: 200px;
}

body form button{
    background-color: black;
    margin-top: 30px;
    border-radius: 10px;
    width: 220px;
    border: none;

    padding: 10px;
    font-size: 25px;
    color: white;
}
