body {
    width: 100vw;
    height: 100vh;
    color: #054178;
}

.login-background {
    background-repeat: no-repeat;
    background-color: #045baa;
    background-image: url('../images/login_background.jpg');
    background-size: contain;
    background-position: center;
    overflow: hidden;
    position: relative;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-Regular.ttf');
}

.container {
    width: 100%;
    max-width: unset !important;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.login-window {
    background-color: white;
    width: 100%;
    max-width: 450px;
    padding-top: 10px;
    padding-bottom: 1px;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 5px 5px 15px #0c365c;
    font-family: 'Roboto';
    z-index: 2;
    margin: auto;
}

.headerlogo {
    background-image: url('../img/jflogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 122px;
    background-position: center;
}

.login-title {
    font-family: 'Roboto';
    font-weight: 600;
    color: #032741;
}

/* override Chrome's autocomplete styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-transition-delay: 99999s;
  transition-delay: 99999s;
}

.input-fld {
    background-color: #edf0f6;
    border: 1px solid #ccc;
    width: 100%;
    border-radius: 3px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px; 
    border-left: 0; 
    height: 50px;
    color: #022743 !important;
}

.input-fld::placeholder {
    color: #022743;
    opacity: 1;
}

.login-btn {
    width: 100%;
    background-color: #045baa;
    color: white;
    font-size: large;
    height: 45px;
}

.login-btn:hover, .login-btn:focus, .login-btn:focus-visible {
    background-color: white;
    color: #045baa;
    border: 1px solid #045baa;
}

.login-btn:focus, .login-btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.input-fld:focus, .input-fld:focus-visible {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ccc;
    background-color: #edf0f6;
    outline: none;
}

.message {
    color: white;
    text-shadow: 1px 1px 8px rgb(0, 0, 0);
}

.lock-icon {
    background-image: url('../images/lock.png');
    background-size: contain;
    padding: 10px;
    margin: auto;
    background-repeat: no-repeat;
}
.user-icon {
    background-image: url('../images/user.png');
    background-size: contain;
    padding: 10px;
    margin: auto;
    background-repeat: no-repeat;
}

.icon-holder {
    border-top-left-radius: 3px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 3px;
    border: 1px solid #ced4da;
    border-right: none;
    background-color: #edf0f6;
    margin: auto;
    margin-right: -1px;
    padding: 14px;
}

#version {
    color: #022743;
    position: relative;
    font-size: small;
    text-align: center;
}

.alert-danger {
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 3px;
}

.info-window {
    position: fixed;
    bottom: 0vh;
    padding: 15px;
}

.disclaimer {
    padding: 30px;
    padding-top: 20px;
    font-size: 0.8rem;
}

.privacy {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
    font-size: 0.8rem;
    color: white;
    text-shadow: 1px 1px 8px rgb(0 0 0);
}

.policies {
    display: flex;
    flex-direction: row;
}

.policies a {
    color: white;
}

.policies a:hover {
    color: #045baa;
    text-decoration: none;
    text-shadow: 1px 1px 1px white;
}

.login-window .privacy, .login-window .privacy a {
    display: none;
    color: #054178;
    text-shadow: none;
    font-size: 0.7rem;
}

.info-window .privacy a {
    font-size: 0.8rem;
}

.background-img {
    display: none;
}

@media (max-width: 760px) {

    .container {
        padding-left: 0;
        padding-right: 0;
        overflow-y: unset;
        justify-content: unset;
        align-items: unset;
    }

    .login-window {
        box-shadow: none;
        width: 100%;
        display: flex;
        flex-flow: column;
        overflow-y: auto;
        margin: 0;
        max-width: unset;
    }

    .icon-holder {
        padding: 14px;
    }

    .login-btn {
        height: 55px;
        border: none;
    }

    .login-background {
        background-color: white;
        background-image: none;
    }

    .message {
        color: #022743;
        text-shadow: none;
    }

    .background-img {
        display: unset;
        width: 70%;
        margin-left: auto;
        margin-top: auto;
        margin-right: 30px;
        padding-bottom: 10px;
    }

    .info-window {
        display: none;
    }

    .login-window .privacy {
        display: flex;
        flex-direction: column;
    }

    .login-window .privacy a {
        display: flex;
    }

    .headerlogo {
        margin-bottom: 20px !important;
        min-height: 122px;
    }

    .disclaimer {
        font-size: 0.7rem;
    }
}

@media (max-height: 750px) {
    .info-window {
        display: none;
    }

    .login-window .privacy {
        display: flex;
        flex-direction: column;
    }

    .login-window .privacy a {
        display: flex;
    }
}

/*.login-footer {*/
/*    text-align: center;*/
/*    font-family: Roboto;*/
/*    font-size: 14px;*/
/*    font-weight: normal;*/
/*    font-stretch: normal;*/
/*    font-style: normal;*/
/*    line-height: 3.71;*/
/*    letter-spacing: normal;*/
/*}*/

/*.login-footer-left {*/
/*    color: #8aa8fc;*/
/*}*/

/*.login-footer-right {*/
/*    color: white;*/
/*    cursor: pointer;*/
/*}*/

.container.legal {
    padding: 0;
    margin: 0;
    min-width: 100%;
    justify-content: unset;
    color: #04355b;
}

.legal .custom-tabs {
    width: 100%;
}

.legal .custom-tabs li {
    width: 25%;
}

.legal .header {
    width: 100%;
    display: flex;
    border-bottom: 15px solid #045baa;
    padding-left: 10%;
    padding-right: 10%;
    justify-content: space-between;
    align-items: center;
}

.legal .logo {
    background: url('../img/jflogo.png') no-repeat center;
    display: inline-block;
    width: 400px;
    height: 106px;
    margin: 20px;
    background-size: contain;
}

.legal .header .logo-container, .legal .header .button-container {
    display: flex;
}

.legal .header .button-container {
    margin-bottom: 0;
    justify-content: center;
    align-items: center;
}

.legal .scroll-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-left: 10%;
    padding-right: 10%;
    overflow-x: hidden;
    overflow-y: auto;
}

.legal .custom-tabs a {
    padding: 10px;
}

.varec .big-btn {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1.1rem;
}

.varec .credentials {
    background-color: #045baa;
    color: white;
    border: 1px solid #045baa;
}

.varec .credentials:hover {
    background-color: white;
    color: #045baa;
}

.varec .credentials.no-hover:hover {
    background-color: #045baa;
    color: white;
}

.varec .du-create {
    background-color: #032741;
    color: white;
    border: 1px solid #032741;
}

.varec .du-create:hover {
    background-color: white;
    color: #032741;
}

@-webkit-keyframes fadeAway {
    from {opacity: 1;}
    to {opacity: 0;}
}

@keyframes fadeAway {
    from {opacity: 1;}
    to {opacity: 0;}
}

@-webkit-keyframes appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.enable-fadeAway {
    -webkit-animation: fadeAway 0.5s ease;
    animation: fadeAway 0.5s ease;
}

.enable-appear {
    -webkit-animation: appear 1s ease;
    animation: appear 1s ease;
}

.varec .logos {
    display: flex;
    align-items: center;
    padding: 25px;
    justify-content: space-between;
}

.varec .logos .jf {
    width: 50%;
}

.varec .logos .vrc {
    width: 30%;
    margin-right: 3px;
}

.varec .line {
    display: flex;
    height: 0;
    border-top: 1px solid #032741;
}

.w-40 {
    width: 40% !important;
}

.login-spacing {
    margin-left: 25px;
    margin-right: 25px;
}

.varec .top-border {
    border-top: 1px solid #032741;
}

.varec {
    color: #032741;
}