* {
    font-family: 'Nunito', Arial;
}
body {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(115deg, rgb(232, 74, 224), rgb(93, 255, 247));
}
body,
main {
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    width: 80%;
    height: 80%;
    max-width: 500px;
    max-height: 700px;
    min-width: 300px;
    min-height: 300px;
    flex-direction: column;
    background-color: white;
    border-radius: 20px;
}
h1 {
    margin: 10px 0 30px 0;
    font-size: 84px;
    font-weight: 700;
    cursor: default;
    font-style: sans-serif;
}
#form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#credential_inputs {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    margin: 10% 0;
    gap: 22px;
}
.credential_input {
    height: 30px;
    background-color: rgb(223, 223, 223);
    border-style: none;
    color: black;
    border-radius: 5px;
}
#login_button {
    width: fit-content;
    font-size: 25px;
    padding: 6px 20px;
    border-radius: 5px;
    background-color: rgb(227, 227, 227);
}
#login_button:hover {
    background-color: rgb(202, 202, 202);
}
#message_container {
    padding: 40px 0 0 0;
    font-size: 24px;
}
#message {
    text-align: center;
}