body {
    background: linear-gradient(to bottom, #327b42 0%, #1a4023 100%);
    color: #fff;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    min-height: 100vh; /* Ensures the gradient covers the full viewport height */
}
.screen-content {
    overflow: hidden;
}
#swish-ctn {
    display: none;
}
@media (min-width: 1000px)
{
    #swish-ctn {
        display: block;
        position: absolute;
        z-index: -1;
        rotate: -30deg;
        top: 0;
        right: 0;
    }
    #swish {
        height: 100%;
    }
}


#login-wrapper {
    margin: 15vh auto;
    max-width: 80em;
}
#login-flex-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 5em;
    flex-wrap: wrap;
}
#login-flex-wrap > * {
    flex-basis: calc(50% - 2.5em);
    flex-grow: 1;
    min-width: 16em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#login-wrapper p {
    margin: 0 0 0.5em;
}


#login-logo-ctn {
    margin: 1em 0 2em;
}
#login-logo {
    height: 5em;
}

#login-support {
    padding-top: 1em;
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
#login-support p {
    text-align: justify;
}
#login-support p:first-child {
    font-weight: bold;
    font-family: sans-serif;
    font-size: 2.3em;
    text-align: left;
    margin-bottom: 0.5rem !important;
    color: #2e9b36;
}

#mobile-links {
    padding-top: 1em;
    margin-top: 2em;
    border-top: 2px dashed var(--blue-mid-bg);
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
    align-items: center;
}
#eolas-logo {
    height: 3em;
}
.app-link {
    display: block;
}
.app-link img {
    vertical-align: top;
    width: 100%;
    height: 100%;
}
#play-store-link {
    height: 2em;
}
#app-store-link {
    height: 2em;
}


#login-credentials {
    flex-basis: 33%;
    justify-content: center;
}
#credential-inputs label {
    margin: 1.5em 0 0;
    position: relative;
    display: block;
}
#credential-inputs .label-text {
    display: inline-block;
    background: #fff;
    line-height: 1.5em;
    padding: 0 0.5em;
    height: 1.5em;
    position: absolute;
    top: -0.75em;
    left: 1em;
    color: var(--green-teal-text);
}
#credential-inputs input {
    border: 2px solid var(--green-teal);
    width: 100%;
    padding: 0.75em !important;
    max-width: 100%;
    height: auto !important;
    font-size: 1.25em;
}

#forgot-password-ctn {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#show-password-ctn {
    display: flex;
    align-items: center;
    gap: 0.5em;
    cursor: pointer;
    color: #666;
}
#request-password {
}
#login-buttonset {
    display: flex;
    justify-content: flex-end;
    padding-top: 1em;
}
#show-password-ctn .icon-input-ctn {
    font-size: 0.8em;
}

#request-password-form p {
    margin: 0 0 0.5em;
    text-align: justify;
}
#request-password-form label {
    margin: 0 0 0.5em;
    display: flex;
    gap: 0.5em;
    align-items: center;
    flex-wrap: wrap;
}
#request-password-form .label-text {
    font-weight: bold;
    flex-basis: 8em;
    text-align: right;
}
#request-password-form.request-password .label-text {
    flex-basis: 4em;
}
#request-password-form label#request-mobile {
    margin-top: 2em;
}
#request-password-form input {
    border: 2px solid var(--green-teal);
    padding: 0.5em;
    height: 3em;
    width: 100%;
    flex-grow: 1;
    min-width: 14em;
    max-width: 20em;
}

#login-refine {
    text-align: left;
}
#login-refine .label-text {
    font-weight: bold;
}
#login-refine select {
    margin-top: 0.25em;
    border: 2px solid var(--green-teal);
    height: 3em;
    padding: 0 1em;
    width: 100%;
    max-width: 100%;
}