html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  background-image: url("/images/bg.png");
}

.container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .title {
  color: white;
  font-family: 'Quicksand','sans-serif';
  font-size: 350%;
}

.container input {
  width: 300px;
  height: 50px;
  margin-top: 10px;
  border-radius: 40px;
  border: 0px;
  outline: none;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 150%;
}

.container button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 300px;
  height: 50px;
  margin-top: 20px;
  border-radius: 40px;
  border: none;
  outline: none;
  font-size: 150%;
  background-color: #FE0000;
  color: white;
  cursor: pointer;
}

.container #login-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container #register {
  font-family: 'Quicksand',sans-serif;
  color: white;
}

.container a {
  text-decoration: underline;
  color: white;
}

.container a:visited {
  color: white;
  text-decoration: underline;
}

.footer {
  position:absolute;
  left:10;
  bottom:10;
  margin-bottom: 3px;
  font-family: 'Quicksand',sans-serif;
  color: white;
}

.footer a {
  text-decoration: underline;
  color: white;
}

.footer a:visited {
  color: white;
  text-decoration: underline;
}
/*# sourceMappingURL=login.css.map */