.miscellaneous-container {
    display: flex;
    width: 100%;
    height: 100vh;
    transition: margin-left .35s ease-in-out, left .35s ease-in-out, margin-right .35s ease-in-out, right .35s ease-in-out;
    flex-direction: column;
    background-color: var(--background-color-white);
    overflow-y: hidden;
}

.miscellaneous-header {
    min-height: 181px;
    background-image: url(../../../img/login-header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: flex-end;
    width: 100vw;
}
.miscellaneous-title {
    font-variation-settings: "wght" 750;
    color: var(--text-color-white);
    margin: 0 0 0.9em 1.8em;
    font-size: 28px;
    line-height: 0px;
    letter-spacing: -0.02em;
    -webkit-text-stroke: 0.5px var(--primary-color);
}


@media (min-width: 768px) {
    .miscellaneous-header {
        min-height: 210px;
        background-image: url(../../../img/login-header-ipad.jpg);
    }
}