html{
    width: 100%;
    height: 100%;
}

body{
    margin: 0;
    width: 100%;
    height: 100%;

    background-color: #eaeaea;

    display: flex;
    justify-content: center;
    align-items: center;
}

#main{
    display: flex;
    flex-direction: column;

    background-color: #ffffff;

    padding: 10px 50px 25px 50px;

    border: 1px solid darkgray;
}

#header{
    display: flex;
    align-items: center;
    justify-content: center;

    height: 70px;
    width: 100%;
}

#header > img{
    margin: 0;
}

#asp{
    flex-grow: 1;

    display: flex;
    justify-content: center;
}

#Login1 table{
    width: 100px;

    border-collapse: separate;
    border-spacing: 0px 10px;
}

#Login1 *{
    font-family: sans-serif;
    font-size: 14px;
}

#Login1_UserName, #Login1_Password{
    height: 35px;

    padding: 0 0 0 10px;

    outline: none;
    border-radius: 0px;
    border: 1px solid darkgray;
}

#Login1_UserName:focus, #Login1_Password:focus{
    border-color: #2380f3;
}

#Login1_UserNameRequired, #Login1_PasswordRequired{
    position: absolute;
}

#Login1_LoginButton{
    margin: 15px 0 0 0;
    padding: 0;
    height: 35px;
    width: 100%;
    color: white;
    outline: none;
    border: none;
    background: #2380f3;
}

#Login1_LoginButton:hover{
    cursor: pointer;
}