﻿* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    /*Targeting IE and older browsers*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
}


.mtop10 {
    margin-top: 10px;
    font-size: 13px;
}


/*Background Image For Container*/
div.bgimg {
    flex-grow: .8;
    flex-basis: 100%;
    max-height: 600px;
    width: 500px;
    background-image: url("../img/turbine2.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
}

    div.bgimg .row.content {
        height: 94%;
        margin-left: 0;
        margin-right: 0;
    }


/*Form Container*/
div#formContainer {
    width: 100%;
}

/*Form*/
form {
    width: 50%;
    margin-left: 20px;
}

/*Footer Positioning*/
footer.foot {
    text-align: center;
}

footer div.container {
    width: 100%;
}

div#labelForgotPassword {
    margin-top: 10px;
}

/*Smaller Devices*/

@media(max-width:576px) {
    div.bgimg {
        flex-grow: 1;
        width: 100%;
        max-height: 100%;
    }

    footer.foot {
        width: 100%;
    }

    form {
        width: 70%;
    }
}

.error, #LoginFeedback, #lblLoginFeedback, #lblLoginITNotification {
    color: red;
}

#divSmallBoxes {
    top: 0px !important; /* So that notification appears at the top. */
}


.footer-content {
    top:-5px;
    position:relative;
}


/*Reset Password styles*/
p#lblMsg{
    display:none;
}


/*Forgot Password styles*/
p#forgot-password-label {
    padding: 0 20px 0 20px;
}