/**
 * CSSReset.com - How To Keep Footer At Bottom of Page with CSS
 *
 * Original Tutorial: http://www.cssreset.com/2010/css-tutorials/how-to-keep-footer-at-bottom-of-page-with-css/
 * License: Free - do whatever you like with it! Credit and linkbacks much appreciated.
 *
 * NB: Make sure the value for 'padding-bottom' on #content is equal to or greater than the height of #footer.
 */

/*------------------ GLOBAL ----------------- */
html, body {
    margin:0;
    padding:0;
    height:100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: white;
}

.fixedwidth {
    width:100%;
    margin:0 auto;
}

.redError {
    font-size: 12px;
    color: red;
    margin-top: 15px;
}

#wrapper {
    min-height:100%;
    position:relative;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color: #EEEEEE;
}

/*------------------ HEADER ----------------- */
#header {
    background-color:#FFFFFF;
    height: 65px;
}
#infoHeader {
    padding: 10px;
}
#docstrackLogo {
    float: left;
}

/*------------------ CONTENT ----------------- */

.card{
    width: 40vw;
    margin-top: 7vh;
    background-color: #001520!important;
    color: white !important;
}

#content {
    padding-bottom:20vh; /* Height of the footer element */
    color: #444444;
    width: 100%;
    font-family: Georgia, serif;
}

#leftView {
    margin-top: 20px;
    padding-top: 50px;
    max-height: 430px;
    max-width: 500px;
    margin-bottom: 30px;
    float:left;
}

#rightView {
    margin-top: 30px;
    /* max-height: 450px;
    max-width: 500px;
    margin-bottom: 30px;
    margin-left: 50%; */
}

#sectionTitle {
    color: white;
    text-align: center;
}

#rightView p {
    text-align: center;
    font-style: italic;
}



form {
    margin-top: 30px;
}

#signUpOptions input {
    margin-top: 10px;
}

#signUpOptions input[placeholder] {
    text-align: left;
    padding-left: 10px;
}

#forgotPassword {
    font-size: 12px;
}



/*------------------ FOOTER ----------------- */
#footer {
    background: #011434;
    width: 100%;
    min-height: 115px;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed !important;
}

.footer-row{
    margin-top: 4vh !important;
}

#infoFooter {
    padding: 5px;
}

#links {
    float: right;
    margin-right: 27%;
    padding-top: 20px;
    text-align: center;
}

#copyright {
    clear: both;
    text-align: center;
    color: white;
}

@media (max-width: 900px) {
    .card {
        width: 60vw !important;
    }

    #itcsprLogo {
        width: 30vw;
        height: 5vh;
    }
}

@media (max-width: 700px) {
    .card {
        width: 60vw !important;
    }

    .login-form{
        margin-top: -9vh;
    }

    #itcsprLogo {
        width: 30vw;
        height: 5vh;
    }
}

@media (max-width: 400px) {

    .login-form{
        margin-top: -9vh;
    }

    #itcsprLogo {
        width: 30vw;
        height: 5vh;
    }

    #copyright{
        font-size: 12px !important;
    }
}