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

.redError {
    font-size: 12px;
    color: red;
    margin-top: -15px;
    text-align: center;
    word-wrap: normal;
}

#wrapper {
    min-height: 100%;
    min-width: 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 ----------------- */

.col {
    text-align: center;
}

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

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

#docstrackLogo {
    margin: 15px 0 0 15px;
}

#view {
    max-height: 450px;
    max-width: 500px;
    margin: auto;
    width: 50%;
    margin-top: 50px;
    text-align: center;
}

#sectionTitle {
    /* color: #444444; */
    text-align: center;
}

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

#signUpOptions {
    margin-top: 50px;
}

form {
    margin-top: 30px;
}

#signUpOptions input {
    margin-top: 10px;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 80% !important;
    width: 300px !important;
    min-width: 150px !important;
}

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

#forgotPassword {
    margin-top: 20px;
    font-style: normal;
    font-size: 12px;
}

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

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

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

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

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

    #itcsprLogo {
        width: 15vw;
        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;
    }
}