.loginPage {
    font-family: BananaGrotesk, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.loginLogo {
    height: 20vh;
}
.loginPage form {
    display: inline;
}
.loginBox {
    display: flex;
    flex-direction: column;
    margin: 3vh 0;
    z-index: 1;
}

.loginHeader {
    background: #0a0a0a;
    padding: 0 8vw;
    display: flex;
    justify-content: center;
}

.loginContent {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: white;
    padding: 2vw;
}

.loginContent > * {
    margin: 2vh 0;
}

.loginTitle {
    font-size: 6vh;
}

.loginText {
    text-align: center;
    font-size: 3vh;
}

.loginHelp {
    text-align: center;
    font-size: 2.5vh;
}

.loginButton {
    background: #0a0a0a;
    color: white;
    border-radius: 8px;
    font-size: 3vh;
    min-width: 20vw;
    cursor: pointer;
    height: 6vh;
}