﻿body
{
    background-image: url("images/bg2.jpg");
    font-family: Arial;
}
body, html, form
{
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
}
table.main
{
    width: 100%;
    height: 100%;
}
div.login
{
    width: 460px;
    height: 402px;
    background-image: url("images/loginbg.png");
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}
div.message
{
    width: 350px;
    font-size: 12px;
}
.none { }
input.txt
{
    background-color: transparent;
    border: none;
    width: 239px;
    height: 24px;
    outline: none;
}

input.loginid
{
    position: absolute;
    top: 128px;
    left: 132px;
    outline: none;
}
input.password
{
    position: absolute;
    top: 188px;
    left: 132px;
    outline: none;
}

input.loginbutton
{
    width: 200px;
    height: 50px;
    border: none;
    background-color: transparent;
    background-image: url("images/loginbutton.png");
    position: absolute;
    left: 120px;
    top: 225px;
    background-position: 0px 0px;
    cursor: pointer;
}
input.loginbutton:hover
{
    background-position: 0px 50px;
}

.remember
{
    position: absolute;
    top: 295px;
    left: 30px;
}
.remember label
{
    line-height: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    color: #c1c2c2;
    padding-top: 3px;
    display: inline;
    float: left;
}
.remember input[type="checkbox"]
{
    float: left;
    -webkit-appearance: none;
    border: none;
    width: 30px;
    height: 30px;
    background: url(images/loginchkbox.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: 30px;
}
.remember input[type="checkbox"]:checked
{
    background: url(images/loginchkbox.png) no-repeat;
    background-repeat: no-repeat;
    background-position: 0px -30px;
}
.error
{
    padding: 5px 5px 5px 25px;
    font-weight: bold;
    border-radius: 3px;
    border: solid 1px #f14f75;
    color: #ff0000;
    background: #ffefef url(images/error.png);
    background: -moz-linear-gradient(top,  #ffefef 0%, #ffdbdb 50%, #ffefef 100%) url(./images/error.png);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffefef), color-stop(50%,#ffdbdb), color-stop(100%,#ffefef)) url(./images/error.png);
    background: -webkit-linear-gradient(top,  #ffefef 0%,#ffdbdb 50%,#ffefef 100%) url(./images/error.png);
    background: -o-linear-gradient(top,  #ffefef 0%,#ffdbdb 50%,#ffefef 100%) url(./images/error.png);
    background: -ms-linear-gradient(top,  #ffefef 0%,#ffdbdb 50%,#ffefef 100%) url(./images/error.png);
    background: linear-gradient(top,  #ffefef 0%,#ffdbdb 50%,#ffefef 100%) url(./images/error.png);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffefef', endColorstr='#ffefef',GradientType=0 ) url(./images/error.png);
    background-position: 5px center;
    background-repeat: no-repeat;
}