@import url(http://fonts.googleapis.com/css?family=Open+Sans);
* {margin: 0px;padding: 0px;font-family:'Open Sans', sans-serif;font-size: 13px;}
body,html{ height:100%; }
body {background-color:#707070; }
img {border: none;}
a {font-weight: 400;color: #0055FF;text-decoration: none;}
input[type="text"], input[type="password"] {
    font-size:1.5em;
    padding:10px 6px;
    background-color:#E1E1E1;
    width:100%;
    margin:0 0 1em;
    box-sizing:border-box;
    border:1px solid #E1E1E1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;     
    outline:none;
    transition: all 0.25s ease-in-out;
    text-align:center;
}
input[type="submit"]{
    width:100%;
    cursor: pointer;
    background: #fcda47;
    font-size: 14px;
    color: #707070;
    font-size:1.5em;
    border:1px solid #fcda47;
    text-transform: uppercase;
    padding:10px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;         
}
div.logo {
    text-align:center;
    padding:0 0 30px;
}
.clear {clear: both;}
div.validation-error {
    position:relative;
    width:auto;
    color:red;
}
input.input-error { border-color:red; }
.login_box_header { position: relative; text-align:center; }
.login_box_header img { margin-bottom: 20px; }
.login_forgot { color: #000; }
.login_label { color: black; }
#login-wrapper {
    position: relative;
    width: 100%;
    height: 94%;    
    background: #f4f3f3 url('/images/banners/content_bg.gif') repeat top left;
}
#very-top-bar {
    height:60px;
    background-color:#707070;
}
#top-bar {
    padding-top:25px;
    text-align:center;
    height:100px;
}
#container {
    width:450px;
    padding:0 10px;
    margin:auto;
    background:#707070;
    border: solid #707070 1px;
    border-radius:10px;
}
#body {padding: 25px; }
#message {clear: both;}
#message div {
    width: 100%;    
    box-sizing: border-box;
    background-position: 8px 6px;
    background-repeat: no-repeat;
}
#message div div.text{
    padding-top: 6px;
    padding-bottom: 6px;    
    padding-left: 3em;
    font-weight: bold;
    font-size: 9pt;
}
#message .success {
    background-image: url('/images/icons/check.png');
    background-color: #E2F1D0;    
    color: #061A5B;
}
#message .error {
    background-image: url('/images/icons/delete.png');
    background-color: #FFD9D9;
    color: #800; 
}
#message .info {
    background-image: url('/images/icons/information.png');
    background-color: #060C6A;
}