.loginPage {
    width: 100dvw;
    height: 100dvh;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, rgb(63, 26, 149), rgb(191, 38, 191), rgb(80, 16, 80));
}

.loginPage form {
    min-width: 320px;
}

.messageBox {
    font-weight: 600;
}

.messageBox:empty {
    display: none;
}

.messageBox--error {
    color: tomato;
}

.messageBox--info {
    color: teal;
}