/* ==========================================================================
/  eCare NEXT MVC Auth: UI Styles
/  Dependencies:
/  CSS Reset: reset.css
========================================================================== */

/*=============================================================================
  custom font faces
=============================================================================*/

@font-face {
    font-family: 'RobotoRegular';
    src: url('fonts/roboto-regular-webfont.eot');
    src: url('fonts/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/roboto-regular-webfont.ttf') format('truetype'), url('fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('fonts/roboto-medium-webfont.eot');
    src: url('fonts/roboto-medium-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/roboto-medium-webfont.ttf') format('truetype'), url('fonts/roboto-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('fonts/roboto-bold-webfont.eot');
    src: url('fonts/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/roboto-bold-webfont.ttf') format('truetype'), url('fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('fonts/roboto-italic-webfont.eot');
    src: url('fonts/roboto-italic-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/roboto-italic-webfont.ttf') format('truetype'), url('fonts/roboto-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('fonts/roboto-bolditalic-webfont.eot');
    src: url('fonts/roboto-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/roboto-bolditalic-webfont.ttf') format('truetype'), url('fonts/roboto-bolditalic-webfont.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

body {
    font-family: 'RobotoRegular', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #404040;
    background: #575756;
}

h1, h2, h5, th {
    font-weight: bold;
}

h3, h4 {
    font-weight: 500;
}

h1 {
    font-size: 1.7em;
    color: #555555;
}

h2 {
    font-size: 1.5em;
    color: #666666;
}

h3 {
    font-size: 1.3em;
    margin: 0 0 1.0em 0;
    color: #1d4f91;
}

p {
    margin: 0 0 1.0em 0;
}

a, a:link, a:visited {
    color: #1d4f91;
    text-decoration: underline;
}

    a:hover, a:active {
        text-decoration: none;
    }

/*=============================================================================
   layout
=============================================================================*/

#LoginWrapper {
    padding: 50px;
    width: 720px;
    height: 520px;
    margin: 50px auto 25px auto;
    background: url(../images/background.png) no-repeat center;
}

#leftColumn {
    float: left;
    width: 250px;
    padding-top: 90px;
}

#rightColumn {
    float: right;
    width: 410px;
}

#Login, #CheckChipLogin {
    padding: 25px 30px 30px 30px;
    background: #e6e6e6;
    border-radius: 10px;
}

#News {
    clear: both;
    padding: 20px 25px;
    height: 370px;
    overflow-y: auto;
    background: #d9e2ee;
    border-radius: 10px;
    font-size: 1.1em;
    line-height: 1.6em;
}

.ecn-logo {
    margin: 0px auto 30px auto;
    width: 244px;
    height: 56px;
    background: url(../images/ecn-logo.png) no-repeat center;
    text-indent: -9999em;
}

.eh-logo {
    float: right;
    margin: 0px 0px 65px 0px;
    width: 120px;
    height: 50px;
    background: url(../images/experian-health-logo.png) no-repeat center;
    text-indent: -9999em;
}

/*=============================================================================
   form elements
=============================================================================*/

.form li {
    padding: 0 0 15px 0;
}

.form label {
    display: inline-block;
    font-weight: bold;
    color: #666;
    margin: 0 2px 3px 0;
}

.form select,
.form textarea,
.form input[type="text"],
.form input[type="password"] {
    font-size: 1.2em;
    font-family: 'RobotoRegular', Arial, Helvetica, sans-serif;
    color: #1d4f91;
    padding: 3px 2px;
    border: 1px solid #cacaca;
    border-right-color: #fff;
    border-bottom-color: #fff;
    border-radius: 2px;
}

.form select {
    padding: 1px;
}

.form.justify select,
.form.justify textarea,
.form.justify input[type="text"],
.form.justify input[type="password"] {
    width: 95%;
    padding-left: 2%;
    padding-right: 2%;
}

input[type="submit"],
input[type="button"] {
    font-family: 'RobotoRegular', Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    height: 34px;
    padding: 3px 12px;
    color: #FFF !important;
    background: #8A4D92 url(../images/button-newbtn.png) repeat-x bottom;
    border: 1px solid #c397c8;
    border-right-color: #633768;
    border-bottom-color: #633768;
    border-radius: 3px;
    vertical-align: middle;
    cursor: pointer;
    overflow: visible;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
}

input[type="submit"]:hover {
    background: #a35faa url(../images/button-newbtn-inverted.png) repeat-x top;
    box-shadow: 1px 1px 1px rgba(255,255,255,0.3);
}

.required {
    font-size: 1.2em;
}

/*=============================================================================
   error messages
=============================================================================*/

#LoginError {
    padding: 10px 0 0 0;
}

#LoginError .error-message {
    margin: 15px 0 0 0;
    padding: 10px 15px;
    font-weight: bold;
    line-height: 1.2em;
    text-align: center;
    color: #b22222;
    background: #f3ccd8;
    border-radius: 10px;
}

#LoginError .contact-info {
    font-size: 10px;
    color: Black;
}

#LoginError #cookieMsg {
    display: none;
}


/*=============================================================================
   footer
=============================================================================*/

#Footer,
#Footer a {
    color: #ccc;
}

#Footer {
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 40px;
}

#Footer .links {
    margin: 0 0 10px 0;
}

#Footer .links li {
    display: inline-block;
    border-left: 1px solid #ccc;
    padding: 0 6px;
}

#Footer .links li:first-child {
    border: none;
}
