html, body {
  width: 100%;
  height: 100%;
  color: #444;
  background: #f0f0f0;
  background-color: #DCDCDC;
  font: 9pt Arial,Helvetica,sans-serif;
}
#container {
  position: fixed;
  width: 30em;
  /*height: 40em;*/
  top: 45%;
  left: 50%;
  margin-top: -20em;
  margin-left: -15em;
  background: #fff;
  border-radius: 0.5em;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
  padding: 1.5em;
}
.info {
  font-size: 2em;
  /*padding-left: 20px;*/
  padding-top: 1em;
  line-height: 1em;
  text-align: center;
}
.note {
  font-size: 11.5px;
  color: #606060;
  line-height: 1.5em;
  float: left;
  position: absolute;
  margin-top: 9em;
  text-align: center;
  width:90%;
}
form {
  margin: 0 auto;
}
label {
  color: #555;
  display: block;
  padding-top: 0.8em;
  font-size: 1.2em;
  font-weight: bold;
}
input {
  font-size: 1.2em;
  outline: none;
}
input[type=text], input[type=password] {
  color: #777;
  padding-left: 0.7em;
  padding-right: 0.7em;
  margin-top: 0.8em;
  width: 93%;
  height: 2.6em;
  border: 1px solid #ccc;
}
input[type=checkbox] {
  color: #777;
  margin-right: 1em;
}
input[type=text]:focus, input[type=password]:focus {
  border: 1px solid #507CBA;
}
input[type=submit] {
  float: right;
  font-size: 1.5em;
  width: 25%;
  color: #fff;
  background:#507CBA;
  height: 2em;
  border: none;
  margin-top: 1.5em;
}

input[type=submit]:hover {
  opacity: 0.75;
}

input[type=submit]:active {
  opacity: 0.25;
}
