#logIn {
  width: 100vw;
  height: 100vh;
  background-image: url('/public/img/backgrounds/mount.jpg');
  background-size: cover;
}
#logIn .form {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 400px;
  height: 225px;
  background: whitesmoke;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
#logIn .form h1 {
  margin-top: 35px;
  margin-bottom: 35px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
}
#logIn .form input[type=password] {
  width: 350px;
  height: 33px;
  border-radius: 2px;
  border: solid 1px #CCC;
  display: block;
  margin: auto;
  font-size: 16px;
  text-align: center;
}
#logIn .form input[type=submit] {
  display: block;
  margin: auto;
  margin-top: 25px;
  padding: 5px;
  transform: scale(1.5);
  font-size: 8px;
}
#logIn .signature {
  font-family: 'Signature';
  position: fixed;
  bottom: 25px;
  right: 25px;
  font-size: 22px;
}
