/**
 * 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;
}

.confirmButton {
    margin: 5% 0 0 40%;
    min-height: 30px;
    min-width: 100px;
    color: white;
    background-color: #00AA00;
    font-size: 14px;
    border: 0;

    border-bottom: 3px solid green;
    border-radius: 8px;
}

.fixedwidth {
    margin: auto;
}

.redError {
    font-size: 12px;
    color: red;
    margin-top: 1px;
    margin-left: 675px;
    width: 350px;
    text-align: center;
    position: absolute;
}

#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 ----------------- */
#content {
    padding-bottom:165px;
    color: #444444;
    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: 600px;
}

#sectionTitle {
    text-align: center;
}

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

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

#questionOne, #questionTwo {
    margin-right: 5vw;
    font-size: 11px;
}

/* #email {
    margin-left: 35px;
    width: 300px;
} */

#answerOne, #answerTwo {
    margin-left: 5vw;
    width: 300px;
}

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

/*------------------ 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;
    }
}