﻿body{
    margin:0;
    box-sizing: border-box;
    font-family: "segoe ui", Verdana, Arial;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 16px;
    background-color: black;
    color: white;
}

#main
{
    background: rgba(0, 0, 0, 0.49);
    overflow: hidden;
}

#logo
{
    margin-top: 117px;
    float: left;
    margin-left: 75px;
    background: url('/Images/LogoSymbol.png') no-repeat left 35%;
    height: 82px;
    padding-left: 100px;
    font-size: 37px;
    font-weight: bold;
    line-height: 25px;
    padding-top: 30px;
    color: white;
    text-shadow: 2px 2px gray;
    letter-spacing: 0.9px;
}

#loginbox{
    margin-top: 100px;
    background: rgba(0, 0, 0, 0.50) url('/Images/Login-Small.png') center right no-repeat;
    color: #FFF;
    border-left: solid 2px #A09C9C;
    margin: 100px auto;
    display: block;
    width: 500px;
    padding: 8px 40px 8px 8px;
}

.LoginButton
{
    border: 1px solid #2F2F2F;
    background: #F6F6F6 url('/Images/black_back_small.jpg') 50% 50% repeat-x;
    color: white;
    width: 73px;
    height: 27px;
    background-size: cover;
    border-radius: 2px;
    cursor: pointer;
}

.LoginButton:hover, .LoginButton:active
{
    background: #F6F6F6 url('/Images/gray_back_small.jpg') 50% 50% repeat-x;
}

#lblValid {color: red;
    display: block;
    padding: 4px;
    background-color: rgba(14, 14, 14, 0.7);
    border-radius: 4px;}

/* Default Input */
#loginbox input[type=text], #main input[type=password] {
    border:1px solid #899caa;
    border-radius:3px;
    -moz-border-radius:3px;
    color:#313030;
    font-weight:bold;
    padding: 5px 5px;
    box-shadow:inset 0px 1px 3px #bbb;
    -webkit-box-shadow:inset 0px 1px 3px #bbb;
    -moz-box-shadow:inset 0px 1px 3px #bbb;
    font-size:12px;
}


#loginbox input[type=text]:focus, #main input[type=password]:focus {
    outline:none;
    background-color: #FCFF55;
    border: solid 1px gray;
}