#login-container {
    height: 100vh;
    display: flex;
    font-family: 'Roboto Condensed', 'Open Sans', sans-serif;
}

#sidebar {
    width: 100%;
    background-color: #222;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 1em;
    overflow: hidden;
    height: 100%;
}

#sidebar-padding {
    flex-grow: 2;
}

#sidebar-inner {
    overflow: scroll;
    display: flex;
    flex-direction: column;
}

@media (min-height: 675px) {
    #sidebar {
        padding: 3em;
    }
}

p.validation-error {
    margin-bottom: 10px;
    color: red;
}

#cyberhawk-logo {
    display: block;
}

#cyberhawk-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (min-width: 321px) {
    #cyberhawk-logo img {
        max-width: 350px;
    }
}

/* show desktop version for lg breakpoint and up */
@media (min-height: 675px) {
    #cyberhawk-logo img {
        max-width: 500px;
    }
    #cyberhawk-logo {
        margin-bottom: 30px;
    }
}

#login-form, #logout-form {
    color: #CCC;
}

#logout-form {
    text-align: center;
    margin-bottom: 40px;
}

#login-container a {
    color: #bbb;
    text-decoration: underline;
}

#login-form h2, #logout-form h2 {
    color: #ddd;
    font-size: 1.2rem;
    text-transform: uppercase;
}

#login-form label {
    display: inline-block;
    margin-bottom: .25rem;
    text-transform: uppercase;
    color: #999;
}
#login-form label.validation-error {
    color: red;
}

#buttons-container {
    display: flex;
    justify-content: space-between;
}

#login-form .login-form-button, #logout-form .login-form-button {
    padding: 5px;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
    font-size: 1.2rem;
    border-radius: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 321px) {
    #login-form .login-form-button, #logout-form .login-form-button {
        padding: 10px 20px;
    }
}

#logout-form .login-form-button {
    color: #000;
    text-decoration: none;
}

#logout-form #buttons-container {
    justify-content: space-around;
}

#login-button {
    background-color: #FDD139;
}

#sso-button {
    background-color: #6c757d;
    color: #FFF;
}

#sso-button img {
    transition: all 300ms ease-in-out;
}

#sso-button:hover img {
    transform: rotate(45deg);
}

#sidebar-footer {
    color: #CCC;
    font-size: .7rem;
    justify-self: flex-end;
    text-align: center;
    padding-top: 0.75em;
    border-top: 1px solid #555;
}
#sidebar-footer p {
    margin: 0;
}

#contact-methods {
    text-align: center;
}

.contact-method {
    display: inline-block;
}

#splash-image-container {
    display: none;
    flex-grow: 1;
    background-image: url('/login/login-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: top left;
}
#splash-image-container.new {
    background-image: url('/login/world-map.svg');
    background-size: contain;
    background-color: #CCC;
    background-position: 20px center;
}


#splash-footer-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: none;
    display: block;
}
#splash-footer-logo img {
    width: 199px;
    height: auto;
}

/* show desktop version for lg breakpoint and up */
@media (min-width: 992px) {
    #sidebar {
        width: 490px;
    }

    #splash-image-container {
        display: block;
    }
}

/* Existing CSS for SSO */
::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
}

#sidebarButton {
    font-size: 1.3em;
    line-height: 1.3em;
    -webkit-appearance: none;
    opacity: 1
}

#ssologin {

    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;

    border: none;
    cursor: pointer;
    margin-top: 5%;
    padding: 3% 8% 3% 8%;

    float: right;
}

#ssoLoginText, #ssoLoginIcon {
    vertical-align: middle;
    font-size: 1.3em;
    line-height: 1.3em;
}

#ssoLoginIcon {
    transition-duration: 0.3s;
    height: 0.8em;
    width: 0.8em;
    margin-left: 5px;
}

#ssoLoginIcon.rotate {
    transform: rotate(44deg);
}

#ssouse {
    width: 49%;
    float: left;
    margin-right: 1%;
    padding: 2%;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

#ssocancel {
    width: 49%;
    float: left;
    margin-left: 1%;
    padding: 2%;

    color: black;
    background-image: url('/assets/icon-cancel.png');
    background-repeat: no-repeat;
    background-position: left;
    background-size: 40px;
    background-color: #fdd138 !important;
    border-color: #e9be2a !important;

    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

#ssoLightbox {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: all;
    display: none;
    z-index: 1;
}

#ssoLightboxLoading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10%;
    z-index: 1;
}

#ssoLightboxBackground {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    background-color: black;
    opacity: 0.5;
}

#ssoLightboxContent {
    width: 50%;

    border: none;

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    overflow: scroll;

    border-radius: calc(.25rem - 1px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

    background-color: #222;

    color: white;
    text-align: center;
    font-size: 1.2em;
    padding: 2%;

    font-family: 'Roboto Condensed', sans-serif;
}

#ssoLightboxContent > .title {
    font-size: 1.2em;
    margin: 2% 0;
    text-transform: uppercase;
}

#ssoLightboxContent > .subTitle {

}

#ssoLightboxContent > .notice {
    font-size: 0.8em;
}

.flash {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0;
    background: #2ecc71;
    z-index: 999;
    left: 0;
    border-bottom: 1.5px solid #27ae60;
}

.flash__message {
    color: #fefefe;
    text-align: center;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: .2px;
    font-family: 'Roboto', sans-serif;
}
