﻿*
{
  font-family: 'Segoe UI', Tahoma, Arial;
}

BODY
{
  background: #559CC4;
}

.dialog { 
  width: 470px; 
  height: 430px; 
  border-radius: 5px; 
  background-color: #fafafa;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto auto;
}

.logo
{
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.title
{
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #808080;
}

/*
input[type=text], input[type=password]
{
  border: none;
  background-color: #f1f1f1 !important;
  font-size: 14px;
  margin-left: 40px;
  line-height: 38px;
  width: 235px;
}
  */

/* Special hack to override Chrome bug with yellow background */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f1f1f1 inset;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.username, .password
{
  display: block;
  left: 100px;
  width: 228px;
  height: 40px;
  position: absolute;
  margin: 0 auto;
  background-color: #F1F1F1;
  border: #D0D0D0 solid 1px;
  border-radius: 5px;
  outline: none;
  padding-left: 50px;
  font-size: 14px;
}

.username
{
  top: 180px;
}

.password
{
  top: 245px;
}

.username:focus, .password:focus
{
  background: white;
  border-color: #549BC6;
}

.usernameIcon, .passwordIcon
{
  position: absolute;
  z-index: 1;
  left: 110px;
}

.usernameIcon
{
  top: 190px;
}


.passwordIcon
{
  top: 255px;
}

.errorMessage {
  left: 0;
  right: 0;
  width: 470px;
  line-height: 35px;
  text-align: center;
  position: absolute;
  margin: 0 auto;
  top: 0px;
  border-radius: 5px 5px 0 0;
  background: #fddede;
  color: #d63132;
}
button
{
  left: 0;
  right: 0;
  width: 100px;
  height: 40px;
  color: white;
  font-size: 14px;
  border-radius: 5px;
  position: absolute;
  margin: 0 auto;
  top: 350px;
  background-color: #5CB85C;
  border: #4CAE4C solid 1px;

    -webkit-appearance: none;
     -moz-appearance: none;
       -ms-apperance: none;
          appearance: none;

  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;


  line-height: normal;
  outline: none;
}

button:hover, button:focus
{
  background-color: #82C482;
}
