@charset "utf-8";

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family:'Segoe UI', sans-serif;
    font-size:15px;
    font-weight: 200;
    color:#D3D3D3;
    background-color: #3b3b3b;
}

table h1{
    padding: 15px;
}

#login-bar
{
    display:block;
    position:absolute;
    clear:both;
    width:100%;
    height:264px;
    top:30%;
    background-color: #2c2c2c;
}

#login-content
{
    display:block;
    width:702px;
    height:217px;
    margin:23px auto 0 auto;
}

/**
 * Form
 */
input{
    background: #242424;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    height: 30px;
    padding-left: 5px;
    border: 1px solid #ccc;
    outline: none;
}

input::-ms-clear{
    display: none;
}

input:hover{
    border-color: rgba(0, 153, 255, 0.5);
}
 
input:focus{
    border-color: #09f;
 }
 
input[type="submit"]{
    background: #007acc;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #09f;
    padding: 6px 12px;
    margin: 10px 0px;
    cursor: pointer;
}
 
 input[type="submit"]:hover{
    background: #09f;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.49);
}

input[type="text"], input[type="password"]{
    width:100%;
}
