body {
    background-color: white;
    display: flex;
    justify-content: center;
    height: 50%;
    margin: 10%;
}

form {
    background: white;
    font-size: 20px;
}

table {
    width: 100%;
}


td {
    padding: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 2%;
    margin-top: 0;
}

input[type="submit"] {
    height: 100%;
    width: 100%;
    padding: 5%;
    background-color: rgb(65, 237, 65);
    color: white;
}

input[type="submit"]:hover {
    background-color: green;
}