form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 16px;
}

#submit-button {
    height: 56px;
}

.form-button {
    width: 100%;
    height: 60px;
    font-size: 1.75em;
    border-radius: 4px;
    margin-top: 10px;
    background-color: lightgrey;
    color: black;
    pointer: cursor;
    border: 1px solid lightgrey;
}

.form-button:hover {
    background-color: grey;
    color: white;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
}

#login-card {
    width: 500px;
    display: flex;
    flex-direction: column;
}

.instructions {
    font-size: 14px;
    margin-bottom: 8px;
}

.error {
    color: #c62828;
}