﻿body {
    font-family: 'Open Sans',Verdana,sans-serif;
    margin: 0;
    height: 100vh;
    width: 100%;
    background-color: white;
    display: block;
}

#banner {
    margin: 0;
    padding: 0;
    width: 100%;
}

    #banner #topLineBanner {
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        height: 24px;
        justify-content: space-between;
        align-items: center;
        margin-top: 12px;
    }

        #banner #topLineBanner #greenBar {
            width: 80%;
            object-fit: cover;
            height: 10px;
        }

        #banner #topLineBanner #surveyOf {
            width: 20%;
            max-width: calc(20% - 48px);
            margin-left: 24px;
            margin-right: 24px;
            object-fit: contain;
            max-height: 32px;
        }

    #banner #midLineBanner {
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        align-items: center;
    }

        #banner #midLineBanner #logo {
            max-width: 500px;
            width: calc(30% - 24px);
            margin-left: 24px;
        }

#logo, #nycLogo {
    display: inline-block;
}

#nycLogo {
    width: 38%;
    height: 25%;
}

#UserNameValidator, #PasswordValidator {
    color: darkred;
    font-weight: bold;
    font-size: 0.85rem;
}
/*;
    margin-right: 24px;
    max-width: calc(80% - 48px);
    max-height: 80px;
}*/
#banner #bottomBar {
    width: 100%;
}

#banner #bo#banner #bottomBar {
    width: 100%;
}

#banner #bottomBar #greenBar2 {
    height: 10px;
    width: 100%;
    object-fit: cover;
}

#LanguageLinkWrapper {
    margin: 20px 5px;
}

.LanguageLinkButton {
    font-family: 'Open Sans',Verdana,sans-serif;
    background-color: lightgray;
    border: 2px solid darkgray;
    font-weight: 700;
    margin: 10px 5px;
    padding: 5px;
    border-radius: 3px;
    box-sizing: border-box;
    width: 180px;
    height: 30px;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    color: black;
    text-decoration: none;
    line-height: 15px;
}

h1 {
    line-height: 1.5;
    font-weight: 700;
    font-size: 1.2rem;
}

p {
    font-weight: 400;
    font-size: 1.2rem;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.top-bottom {
    margin-top: 30px;
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

#welcomeMsg {
    max-width: 50%;
}

.alert {
    position: relative;
    padding: .5rem 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #124A1D;
    background-color: #def8d7;
    border-color: #9af7ac;
}

.form-validator {
    margin: 0;
    font-size: .8em;
}

label {
    display: inline-block;
    font-weight: bold;
    margin: 0;
}

#logonForm {
    width: 250px;
    box-sizing: border-box;
    font-family: 'Open Sans',Verdana,sans-serif;
    margin: auto;
}

    #logonForm input[type=text] {
        font-family: 'Open Sans',Verdana,sans-serif;
        box-sizing: border-box;
        width: 100%;
        height: 30px;
        text-align: center;
        font-size: 1rem;
    }

#togglePwLink {
    font-size: 12.8px;
}

#logonForm input[type=password] {
    font-family: 'Open Sans',Verdana,sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    text-align: center;
    font-size: 1rem;
}

#logonForm input[type=submit] {
    font-family: 'Open Sans',Verdana,sans-serif;
    background-color: lightgray;
    border: 2px solid darkgray;
    font-weight: 700;
    margin-bottom: 1rem;
    border-radius: 3px;
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
}

.highVolume {
    max-width: 50%;
    color: red;
}

.MaintenanceMsg {
    max-width: 50%;
    background-color: #ffffcc;
    color: black;
    padding: .5rem 1rem .5rem 1rem;
    border: 3px solid #00274C;
}

hr {
    background-color: #00274C;
    border: 0;
    height: 8px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

footer {
    display: flex;
    font-size: 12.8px;
    margin-bottom: 1rem;
}

#copyright{
    margin-bottom: 10px;
}

.text-input {
    height: 2.5em;
}

.text-input-validator {
    color: black;
}
/* Smartphones ----------- */
@media screen and (max-width: 700px) {
    #banner #topLineBanner #greenBar {
        width: 60%;
    }

    #banner #topLineBanner #surveyOf {
        width: 40%;
        max-width: calc(40% - 48px);
    }

    #logo {
        display: none;
    }

    #nycLogo {
        width: 96%;
        height: 70px;
        margin: auto;
    }

    #welcomeMsg {
        margin: auto;
        max-width: 90%;
        text-align: justify;
    }

    #MsgWrapper:empty {
        display: none;
    }

    #logonForm input[type="text"] {
        height: 45px;
    }

    #logonForm input[type="submit"] {
        height: 45px;
    }
}
