body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.centerer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loginContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
    text-align: left;
    color: black;
}

.loginContainer label {
    font-size: 1.5rem;
    margin: 0 0 8px 0;
}

.loginContainer input {
    font-size: 1.5rem;
    margin: 0 0 16px 0;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#loginNow, #registerButton {
    font-size: 1.5rem;
    padding: 8px;
    width: 100%;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.loggedIn {
    text-align: center;
    font-size: 1.5rem;
    background-color: #007bff;
    color: white;
    padding: 48px 16px;
    border-radius: 16px;
}