html, body {
  width: 100%;
  height: 100%;
  margin: 0;

  color: #444;
  background: #f0f0f0;

  font: 9pt Arial, Helvetica, sans-serif;
}

.font {
  color: #555;
  font-size: 14px;
}

input {
  font-size: 12px;
  outline: none;
}

input[type=text], input[type=password] {
  color: #777;

  width: 300px;
  height: 35px;

  margin: 12px auto 10px auto;
  padding-left: 10px;

  display: block;
}

input[type=text]:focus,
input[type=password]:focus {
  border: 1px solid #a8c9e4;
  box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4),
              0 0 0 5px #e6f2f9;
}

input[type=checkbox] {
  margin-left: 10px;
  vertical-align: middle;
}

input[type=submit] {
  display: block;

  width: 80px;
  height: 30px;

  margin: 20px auto 0 auto;

  font-size: 14px;
}

.entry {
  width: 100%;
  text-align: center;
}

.entry.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry.centered label {
  display: inline-block;
  padding-top: 0;
  margin-left: 0;
}

.centered {
  display: flex;

  align-items: center;
  justify-content: center;
}

.screen {
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.container {
  width: 340px;
  height: 470px;

  padding: 0;

  flex-direction: column;

  background-color: #fff;

  border-radius: 3px;
  border: 1px solid #ccc;

  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.header {
  padding-top: 20px;
}

.content {
  width: 100%;
}

form {
  width: 320px;

  margin: 20px auto 0 auto;
}

label {
  color: #555;

  display: block;

  margin-left: 0;
  padding-top: 10px;

  font-size: 14px;

  text-align: left;
}

.footer {
  font-size: 11.5px;
  color: #606060;

  line-height: 14px;

  margin: 20px;

  text-align: justify;
}


@media only screen and (max-width: 900px) {

  .container {
    width: 100%;
    height: 100%;
  }

}