main {
    background: url(/landing/images/landing/login.webp) no-repeat center center fixed;
    background-size: cover!important;
    -webkit-background-size: cover!important;
    -moz-background-size: cover!important;
    -o-background-size: cover!important;
    background-size: cover!important;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--gdtfDarkerBlue);
    display: flex;
    height: fit-content;
    min-height: 100%;
}

#loginSpacer {
    flex-basis: 16%;
    max-width: 16%;
}

#loginBox {
    flex-basis: 84%;
    max-width: 84%;
    background-color: white;
    border-radius: 10px;
    padding: 60px 90px;
    margin: 100px 0px 0px 0px;
    max-width: 562px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    position: relative;
}

#loginBox .headlineWrapper {
    position: relative;
}

.gdtfLoginBtnBack {
    background: url(/landing/images/landing/back.png) no-repeat center center;
    background-size: 100%;
    height: 30px;
    width: 30px;
    position: absolute;
    left: -50px;
    top: 28px;
    border: none;
    cursor: pointer;
}

#loginBox .subCaption {
    color:#435a6b;
    font-size: 14px;
    font-style: unset;
}

.flexFormRow {
    display: flex;
    flex-direction: column;
    margin-bottom: .75em;
}

.flexFormRow label {
    font-size: 18px;
}

#feedbackSpan {
    color:red;
}

#loginBox button {
    width: 100%;
}

.smallText {
    color: #c5c5c5;
    font-size: 12px;
}

@media screen and (max-width: 750px) {
    #loginSpacer {
        flex-basis: 1%;
        max-width: 1%;
    }
}

@media screen and (max-width: 580px) {
    #loginBox {
        flex-basis: 98%;
        max-width: 98%;
        margin: 0px;
        padding: 30px 40px;
    }
    #loginBox h1 {
        margin-left: 15px;
    }
    .gdtfLoginBtnBack {
        left: -30px;
    }
}