body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    font-size: 25px;
    background-color: #333;
}

.container {
    width: 70%;
    align-self: center;
    background-color: #dfdfdf;
    margin: 200px 0;
    padding: 60px;
    border-radius: 5px;
}



form div {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

div p {
    width: 100%;
    font-size: 40px;
}

form .button {
    display: flex;
    width: 100%;
    justify-content: center;
}

form button {
    width: 50%;
    height: 70px;
    font-size: 40px;
    background-color: rgb(255, 255, 255);
    color: #333;
    border-radius: 5px;
    transition: all .2s linear;
}

form button:hover {
    background-color: #aaaaaa;
}

h1 {
    font-size: 128px;
    color: #333;
    text-align: center;
}

label {
    width: 100%;
}