html {
  height: 100%;
}
body {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.loginBox {
  background: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  border: 1px solid #337ab7;
  border-radius: 4px;
  width: 480px;
}
h1 {
  color: #fff;
  font-size: 1em;
  background: #337ab7;
  margin: 0;
  padding: 0.75em 1em;
  font-weight: normal;
}
.error {
  margin: 1em;
  color: #a94442;
}
.info {
  margin: 1em;
  color: #3c763d;
}
label {
  display: flex;
  align-items: center;
  margin: 1em 1em 0.5em 1em;
  font-weight: bold;
}
input[type="password"] {
  flex: 1;
  margin-left: 3em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0.75em;
  outline: 0;
}
input[type="password"]:focus {
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
.forgottenPassword {
  margin: 0 1em 1em;
  color: #737373;
  text-align: right;
  font-size: 0.95em;
}
input[type="submit"] {
  color: #fff;
  background-color: #337ab7;
  display: inline-block;
  justify-self: center;
  border: 1px solid #2e6da4;
  font-size: 1em;
  padding: 0.5em 0.75em;
  border-radius: 4px;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: #286090;
  border-color: #204d74;
}
input[type="submit"]:active {
  background-color: #204d74;
  border-color: #122b40;
}
.submit {
  margin: 1.25em 1em 1em;
  text-align: center;
}
