body {
    margin: 0;
    overflow: hidden;
}

.content {
    margin: 113px 0;
}

.title {
    margin-bottom: 0;
    text-align: center;
}

.prompt {
    margin-top: 0;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.login {
    display: flex;
    flex-direction: column;
    text-align: left;
}

label {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
}

input {
    border: #cdcdcd solid 2px;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 20px;
}

#email, #password {
    margin-bottom: 20px;
    font-size: 20px;
}

.submit {
    background-color: #FFBE00;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.submit:hover {
    background-color: #FFD633;
}