.loginForm {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: calc(var(--navigation-height) + 28px);
    height: calc(100% - var(--navigation-height) - 28px); /* set first val to number of widgets */
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    font-size: calc(16px + 1vmin);
}

.loginContainer {

    display: flex;
    flex-direction: column;

}


.loginField {
    margin: 10px 0;
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    font-size: calc(16px + 1vmin);
    border: solid gainsboro 2px;
    border-radius: 10px;
}

#loginLinks {
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    font-size: calc(12px + 1vmin);
}

#loginLinks a {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: blueviolet;
}

#loginButton {
    padding: 10px 20px;
    font-size: calc(16px + 1vmin);
    color: white;
    background-color: blueviolet;
    border: solid gainsboro 2px;
    border-radius: 10px;
}
