html {
  font-size: 14px;
}

body {
  margin: 0;
  font-family: Oxygen, sans-serif;
  background-image: url("/img/background_login_latone_garnier.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
}
body form {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 2rem;
  width: 33%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
body form img {
  display: block;
  height: 5rem;
  margin: 2rem 0;
}
body form label {
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
  line-height: 2rem;
}
body form label input {
  display: block;
  font-size: inherit;
  font-family: inherit;
  border: 1px solid #646464;
  line-height: 1.5rem;
  padding: calc(0.5rem - 1px) 1rem;
  box-sizing: border-box;
  width: 100%;
}
body form p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body form p a {
  color: #5898B8;
}
body form p button {
  height: 3rem;
  font-family: inherit;
  padding: 0 1.5rem;
  font-size: inherit;
  text-transform: uppercase;
  border: 1px solid #646464;
  background-color: #B4A05A;
  cursor: pointer;
  transition: 0.2s ease-in;
  transition-property: background-color, color;
}
body form p button:hover {
  background-color: #5898B8;
  color: white;
}
body > p {
  position: fixed;
  bottom: 0;
  top: 0;
  margin: 0.5rem;
  align-self: flex-start;
  width: 100%;
  color: white;
  font-size: 0.5rem;
}

@media screen and (max-width: 700px) {
  body form {
    width: 100%;
    border-radius: 0;
  }
}

/*# sourceMappingURL=login.css.map */
