/* Main */

* { box-sizing: border-box; }

body {
  color: #333;
  font-family: Roboto, sans-serif;
  padding: 2rem 3rem;
}

a {
  color: #d13030;
  text-decoration: none;
}



/* Forms */
.login-form {
  margin: 5rem auto;
  max-width: 25rem;
}

input:not([type="checkbox"]) {
  background: #fafafa;
  border: none;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding: .75rem;
  width: 100%;
}
input[type=checkbox] {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

input[type=checkbox] + label {
  background-image: url(images/checkbox.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  height: 1.5625rem;
  line-height: 1.5625rem;
  padding-left: 2rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
}
input[type=checkbox]:checked + label {
  background-position: 0 -25px;
}

input[type="submit"] {
  background: #fff;
  border: 2px solid #333;
  border-radius: .25rem;
  color: #333;
}

input:not([type="submit"]){
  border-bottom: 2px solid #ddd;
}
input:focus:not([type="submit"]){
  border-bottom-color: #d13030;
}
