@charset "UTF-8";

html,
body {
   font-family: Oswald, sans-serif;
   background: url(/images/headerbg.png);
}

*
{
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

#login
{
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  left: 50%;
  width: 360px;
}

#login img
{
  width: 100%;
  margin-bottom: 1.5em;
}

#login input[type="text"], #login input[type="password"]
{
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 .6em;
  border: 1px solid #77B0DB;
  background: #fff;
  margin-bottom: 12px;
}

#login input[type="submit"]
{
  width: 100%;
  height: 40px;
  margin-top: 12px;
  line-height: 40px;
  padding: 0 .6em;
  border: 1px solid #2E82BE;
  background: #2E82BE;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}

span
{
  display: inline-block;
  margin-left: 1em;
}

p
{
  color: #2E82BE;
}

a
{
  display: block;
  text-align: center;
  font-size: .85em;
  color: #000;
  text-decoration: underline !important;
}