html, body, h1, p, div
{
    margin: 0;
    padding: 0;
}
body
{
    width: 500px;
    margin: 0 auto;
    background: url("/images/bg.png");
    color: #696f73;
    font-family: arial, sans-serif;
    font-size: 14px;
}

h1 { font-size: 15px; }
a { color: #fff; text-decoration: none; text-transform: uppercase; font-size: 13px; }
a:hover { text-decoration: underline; }

#login-form
{
    position: relative;
    width: 280px;
    border: 1px solid #6b7179;
    border-radius: 15px;
    background: #e1e3e3;
    margin: 80px auto 15px;
    padding: 40px 50px 70px 40px;
}
#login-form img { margin: -15px 0 25px; }
#login-form p { width: 100px; display: inline-block; line-height: 30px; vertical-align: middle; }
#login-form input { width: 150px; padding: 8px; border: 1px solid #ccc; }
#login-button
{
    position: absolute;
    bottom: 25px;
    right: 58px;
    width: 120px;
    height: 35px;
}
#login-button img { margin-top: 12px; }

#back-to-calendar
{
    position: relative;
    width: 250px;
    margin: 0 auto;
    text-align: center;
}

#result-message
{
    position: relative;
    width: 250px;
    margin: 15px auto;
    padding: 15px;
    z-index: 9999;
    text-align: center;
    font-weight: bold;
    border: 1px solid #6b7179;
    border-radius: 15px;
    background: #dee3db;
}
.result-message-ok { color: #77a602; }
.result-message-error { color: #d10000; }