﻿body {
    margin: 0px 0px 0px 0px;
    padding-top: 0px;
    font-family: tahoma, Helvetica, sans-serif;
    background-position: center top;
    background-repeat: repeat-x repeat-y;
    background-repeat: no-repeat;
    background-position: center center;
    /*background: radial-gradient(#ffffff,#92b3ce);*/
    background-color:#a5daf7;
}

div.Login {
    width: 1000px;
    height: 570px;
    margin: 0px auto 0px auto;
    direction: rtl;
}

div.Container {
    font-family: Tahoma;
    font-weight: 700;
    font-size: 8pt;
    color: #304A6B;
    padding-top: 100px;
    width: 429px;
    height: 130px;
    margin: 0px auto 0px auto;
}

table.Login {
    border-style: solid;
    padding: 70px 70px 20px 70px;
    border-radius: 10px;
    border-width: 0px;
    background-color: #e1e1e1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

div.User {
    background-image: url(../../common/img/login/logo.png);
    background-position-x: center;
    background-repeat: no-repeat;
    width: 128px;
    height: 128px;
    position: relative;
    top: 64px;
    margin: auto;
}

input[type=text].UserName {
    background-image: url(../../common/img/login/username.png);
    background-position: 250px center;
    background-repeat: no-repeat;
}

input[type=Password].Password {
    background-image: url(../../common/img/login/password.png);
    background-position: 250px center;
    background-repeat: no-repeat;
}

input[type=text].Form, input[type=password].Form {
    border: 1px solid #9EAFC5;
    width: 242px;
    padding: 3px 25px 3px 3px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    outline: none;
}

    input[type=text].Form:focus, input[type=password].Form:focus {
        border: 2px solid #0095da;
        padding: 2px 25px 2px 2px;
    }

select.Form {
    border: 1px solid silver;
    width: 270px;
    height: 24px;
    padding: 3px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    font-style: normal;
    outline: none;
}

    select.Form:focus {
        border: 2px solid #0095da;
        padding: 2px;
    }

td.Label {
    text-align: right;
    height: 30px;
}

td.LabelError {
    text-align: right;
    color: Red;
}

td.LoginBtn {
    text-align: center;
    padding-left: 8px;
}

input[type=submit].LoginBtn {
    padding: 5px 15px;
    background: #0095da;
    border: 0 none;
    cursor: pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 270px;
    outline: none;
    font-family: 'hb';
    font-size: 10pt;
    line-height: 150%;
    color: white;
    transition: all linear 250ms;
}

    input[type=submit].LoginBtn:hover {
        background: #1fb0f3;
        transition: all linear 250ms;
    }
