body {
    background: #efeff1;
    padding: 0px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    color: #393A3F;
}

.middle {
    margin-top: 150px;
    margin-left: auto;
    margin-right: auto;
    width: 40em;
    padding: 3% 3%;
    background-color: #FFFFFF;
    border: solid 8px #A6A8AB;
}

.middle h2 {
    font-size: 16px;
}

a {
    color: #008ABF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

select, input {
    color: #393A3F;
}

#viewDiv {
    margin-top: 20px;
    font-size: 11px;
    text-align: right;
}

.blocked_page IMG {
    border: none;
}

/* -------------------------------- Password Toggle Text Box ------------------------------------- */
.passwordInputPanel {
    border: 1px solid #000000;
    background-color: #FFFFFF;
    height: 24px;
    width: 180px;
    position: relative;
    display: flex;
}

.eyeButton {
    width: 16px;
    height: 16px;
    padding: 4px;
    cursor: pointer;
    background-color: transparent;
    background-repeat: no-repeat;
    background-origin: content-box;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
}

.eyeButton:focus {
    outline: none;
}

.eyeButton-up {
    background-image: url('/skins/Default/images/login/view_filled_off_16x16.png');
}

.eyeButton-down {
    background-image: url('/skins/Default/images/login/view_filled_16x16.png');
}

.passwordTextBoxForToggle {
    padding: 3px 27px 3px 5px;
    border: 0;
    background-color: inherit;
    width: 100% !important;
    height: 100%;
    box-sizing: border-box !important;
}

.passwordTextBoxForToggle:focus {
    outline: none;
}

/* Disable IE's built-in "eye" for a consistent UI. */
.passwordTextBoxForToggle::-ms-reveal, .passwordTextBoxForToggle::-ms-clear {
    display: none;
}

#page-footer {
    height: 32px;
    color: white;
    background-color: #008ABF;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 1;
    text-align: left
}

#page-footer a {
    color: white;
    text-decoration: none;
}

#page-footer a:hover, .page-footer a:visited {
    color: white;
}

#page-footer a:hover {
    text-decoration: underline;
}

#copyrightBox {
    display: inline-block;
    padding-top: 8px;
    padding-left: 20px;
    color: #82D0F4;
    font-size: 12px;
}

@media screen and (max-width: 732px) and (max-height: 449px) {
    .page-footer {
        position: relative !important;
        bottom: initial;
        position: absolute;
    }
}

@media screen and (max-width: 480px) {
    #copyrightBox {
        float: none; /*For IE 9 */
        float: initial;
        padding-top: 0px;
        width: 299px;
    }
 }