

            html {
                height: 100%;
                margin: 0px 20px;
                font-family: Arial;
                font-size: 75%;
            }
            
            body {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 100%;
                max-width: 1000px;
                margin: auto;
                font-size: 1rem;
            }
            
            a {
                color: #0073A4;
                text-decoration: none;
            }
            
            h1 {
                font-weight: normal;
            }
            
            #Header, #Footer {
                height: 80px;
            }
            
            #Header {
                display: flex;
                flex-direction: column;
                justify-content: center;
                border-bottom: 1px solid #0891c2;
            }
            
            #Content {
                margin: auto;
                text-align: center;
                max-width: 650px;
            }
            
            .form-field {
                margin-bottom: 10px;
                width: 250px;
            }
            
                .form-field input {
                    width: 100%;
                    border-radius: 0px;
                    border: 1px solid #b3b0a9;
                    padding: 5px;
                    font-family: "Trebuchet MS", Verdana, Helvetica, Sans-Serif;
                    font-size: 1.11rem;
                }
            
                .form-field button {
                    background-color: #84b231;
                    border: none;
                    color: white;
                    padding: 6px 12px;
                    border-radius: 3px;
                    font-weight: bold;
                    cursor: pointer;
                }
            
                    .form-field button:hover {
                        box-shadow: inset 0px 0px 0px 100px #ffffff2e
                    }
            
            span.field-validation-error {
                text-align: left;
                display: block;
                padding: 3px 0;
                color: red;
            }
            
            .validation-summary-errors {
                color: red;
                text-align: center;
                min-height: 4rem;
            }
            
                .validation-summary-errors ul {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                }
            
            .form-actions {
                display: flex;
                align-items: center;
            }
            
            .form-actions-grow {
                flex-grow: 1;
                flex-shrink: 0;
            }
            
            #Footer {
                border-top: 1px solid #0891c2;
            }


            
#LoginPage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap-reverse;
}

#AdWrapper {
    margin: 20px;
}

    #AdWrapper img {
        max-width: 100%;
    }

#FormWrapper {
    margin: 20px;
}