body {
  font-family: Neue-Haas-Grotesk-Text, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100vh;
}


input {
  padding: 10px;
  width: 100% !important;
  margin-bottom: 10px;
  /* border-radius: 30px; */
  border: 1px solid #000;
  letter-spacing: 0.3px;
}

label {
  display: none;
}

.newsletter-label {
  display: block;
  opacity: 0.5;
  letter-spacing: 0.3px;
}

.newsletter-wrapper {
  text-align: left;
  display: flex;
  margin-top: 0px;
  margin-bottom: 20px;
  /* align-items:flex-start; */
}

.newsletter-wrapper input {
  width: auto !important;
  display: block;
  margin: 0;
  margin-right: 10px;
  transform: scale(1.1);
}

body main h1 {
  font-family: Neue-Haas-Grotesk-Display, Helvetica, Arial, sans-serif;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 1.2;
  font-weight: normal;
}

main {
  padding: 40px;
  text-align: center;
  margin: auto;
  width: 450px;
  background-color: white;
  border-width: 1px;
  border-style: solid solid solid solid;
  border-radius: 30px;
  /* filter: invert(1); */
}

@media (max-width: 700px) {
  body {
    padding: 15px;
  }
  main {
    padding: 15px;
  }
  body main h1 {
    font-size: 24px !important;
  }
}

.login-links li {
  list-style: none;
  margin-bottom: 5px;
}

form {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  font-size: 16px;
}

.button {
  cursor: pointer;
  text-align: center;
  margin: auto;
  width: 100%;
  margin-top: 10px;
  background-color: black;
  color: #fff;
  text-decoration: none;
}

.logo {
  margin-bottom: 20px;
}

.notice {
  margin-bottom: 20px;
  opacity: 0.5;
  /* letter-spacing: 0; */
  font-size: 12px;
  text-align: left;
}

/* The message box is shown when the user clicks on the password field */
#message {
  display: none;
  color: #000;
  position: absolute;
  min-height: 20px;
  z-index: 9;
  right: 10px;
  margin-top: -45px;
  /* padding: 20px; */
  /* margin-top: 10px; */
}

#message p {
  display: none;
  padding: 0 0 10px 0;
  font-size: 15px;
  text-align: left;
}

#message p.show {
  display: block;
}

#pass-weak {
  color: red;
}

#pass-good {
  color: rgb(201, 158, 0);
}

#pass-good {
  color: green;
}

.ohnohoney {
  display: none !important;
}

#submit[disabled] {
  opacity: 0.4;
}

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.logo.loading {
  animation: rotating 2s linear infinite;
}

.link-back-home {
  display: flex;
  position: fixed;
  top: 10px;
  left: 10px;
  opacity: 0.5;
  text-decoration: none;
  line-height: 1;
}

.link-back-home:before {
  content: "";
  display: block;
  width: 30px;
  height: 14px;
  background-image: url(./img/arrow_left.svg);
  background-repeat: no-repeat;
  /* background-size: auto 100%; */
  background-position: center left;
}

.mobile-notice {
  display: none;
}

@media (max-width: 640px) {
  .login-links,
  form,
  .notice {
    display: none;
  }
  .mobile-notice {
    display: block;
  }
}
