.login-page {
    background-color: var(--);
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-items: center;
}

.login-field {
    display: flex;
    flex-flow: column nowrap;
    width: 30em;
    height: 25em;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #b1b1b1;
    margin-top: 5em;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.input-field {
    width: 75%;
    padding: 0.5em;
    font-size: large;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #b1b1b1;
}

@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
.logo {
    display: flex;
    flex-flow: row nowrap;
    align-items: baseline;
    font-family: 'Open Sans', sans-serif;
   /* font-family: 'Varela Round', sans-serif; */
    color: #002366;
}

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');
.sublogo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #b1b1b1;
    margin-bottom: 1.5em;
}

.login-button {
    font-family: 'Open Sans', sans-serif;
    padding: 0.5em;
    width: 20em;
    border: none;
    border-radius: 8px;
    background-color: #002366;
    color: #f5f5f5;
    font-weight: bold;
}

.login-button:hover {
    background-color: #305497;
}

.image-field {
    width: 50%;
    height: 5em;
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
}

.image-field img {
    height: 100%;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 2em;
    width: 100%;
    background-color: transparent;
    color: #acacac;
    text-align: center;
}
