@import url(//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,600,700,800,300);
@charset "UTF-8";

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
:focus {
    outline: none;
}
html, body { height: 100%; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
strong {
    font-weight: bold;
}
em {
    font-style: inherit;
}
img {
    max-width: 100%;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    background-color: #f5f5f5;
}
a:hover {
    text-decoration: none;
}
.wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 260px;
}
#logo {
    text-align: center;
    margin-bottom: 50px;
}
#login-wrapper {
    background-color: #fff;
    padding: 30px;
    border-radius: 3px;
}
#login-wrapper form > div {
    text-align: right;
}
#login-wrapper form label {
    display: block;
    margin-bottom: 10px;
    text-align: left;
}
#login-wrapper form input {
    border: none;
    background-color: #f5f5f5;
    border-bottom: 1px solid #bebebe;
    width: 100%;
    padding: 7px 10px;
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}
#login-wrapper form input:focus {
    border-color: #2597ee;
}
#login-wrapper form button {
    background-color: #2597ee;
    color: #fff;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
#login-wrapper form button:hover {
    background-color: #50acf3;
}
#footer {
    margin-top: 20px;
    text-align: center;
}
#footer a {
    color: #2597ee;
}
#footer a:hover {
    color: #50acf3;
}

 #message_box {
    position: absolute;
    top: 0; left: 0;
    z-index: 10;
    background:#fff;
    padding:5px;
    text-align:center;
    font-weight:normal;
    width:100%;
    color:#E13300;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.error {
    font-size: 80%;
    color: #E13300;
}