/* We need to set the height of the outermost elements to 100% so that our main div can be centered vertically */
html, body {
    margin: 0px;
    height: 100%;
    padding: 0px;
}

body {
    background-image: url("../../Images/NS_Background_Or.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    /* background-color: rgb(0, 38, 76);*/
}
/* Experimental css form stuff (replaces tables) */
.formLayout {
    background-color: rgba( 137, 161, 210, .85 );
    border: solid 1px rgb( 106, 171, 221 );
    border-radius: 15px;
    padding: 12px;
    width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
    font-size:15px;
}

    .formLayout label, .formLayout input {
        display: block;
        float: left;
        margin-bottom: 10px;
        font-weight:bold;
        
        
    }

    .formLayout input {
        padding: 5px;
        border-style:none;
        border-radius: 4px;
        background-color: rgb(231,231,231);
        padding-left: 5px;
        width: 74%!important;        
    }

        .formLayout input:focus {
            -moz-box-shadow: 0 0 8px rgb( 106, 171, 221 );
            -webkit-box-shadow: 0 0 8px rgb( 106, 171, 221 );
            box-shadow: 0 0 8px rgb( 106, 171, 221 );
            border-color: rgb( 0, 52, 154 );
        }

    .formLayout label {
        text-align: right;
        padding-right: 15px;
        padding-top: 0px;
        color: rgb( 0, 0, 0 );
        font-weight: bold;
        
    }

    .formLayout br {
        clear: left;
    }



/* We also need to take out the margins since we are handling the vertical alignment with transform */
.page_wrapper {
    margin-top: 0em;
    margin-bottom: 0em;
    position: relative;
    top: 30%;
    transform: translateY(-30%);
    text-align: center; /* center everything on this page */
    max-width: 900px;
    background-color: rgba(43,75,145,.85);
    border: 3px solid rgb(4,28,76);
    border-radius: 25px;
    box-shadow: none;
}

.loginBackground{
    background-image: url();
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
}

#NextstepVersion {
    color: white;
    font-size: 20px;
    margin-bottom: 0.5em;
}

#LoginMessage h2 {
    color: rgb(232,232,232);
    font-family: georgia;
}


#Logo{
    padding-top:20px;
    padding-bottom:20px;
}

#DivCurrentPassword{
    display:none;
}
#DivPassword2 {
    display: none;
}

#TempHideRemindersCB {
    width: 20px;
    margin: 10px;
    margin-left: 30px;
}

@media only screen and (max-width:1024px) {
    .page_wrapper {
        max-width: 710px;
    }

    #mainContent {
        max-width: 710px;
    }
}

.forgotPassword {
    display: flex;
    justify-content: flex-end;
}

.forgotPassword > a {
    text-decoration: none;
    color: white;
    font-weight: normal;
}