* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: #c1f89373;
  padding: 40px 90px 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/images/logo.png');
  background-repeat: no-repeat;
  background-position: center;
}

#illustration {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

#illustration img {
  height: 300px;
}

#sign_in {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -110px;
}

#sign_in form {
  border-radius: 18px;
  background: #bded93f7;
  min-width: 352px;
  font-family: IBM Plex Mono;
  font-size: 20px;
  display: flex;
  padding: 35px 30px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
}

#sign_in form input {
  border-style: none;
  padding: 10px 15px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 28px;
  margin-top: 4px;
  border-radius: 9px;
}

#sign_in form button {
  color: #123b55;
  font-family: IBM Plex Mono;
  border-style: none;
  font-size: 20px;
  font-weight: 700;
  width: 160px;
  margin: auto;
  margin-top: 10px;
  height: 44px;
  border-radius: 12px;
  background: #fbef8f;
  padding: 0px 20px 3px 20px;
  cursor: pointer;
  box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s ease-in, transform 0.2s ease-in;
}

#sign_in form button:hover {
  box-shadow: none;
  transform: translateY(5px);
}
#sign_in form button:active {
  filter: invert(1);
}

h1 {
  font-family: "Playfair Display", serif;
  color: #1f354a;
  font-size: 54px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

#footer {
  color: rgba(31, 53, 74, 0.6);
  font-family: IBM Plex Mono;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
  position: absolute;
  bottom: 1px;
}

.display_none {
  display: none;
}

@media only screen and (max-width: 500px) {

  #illustration {
    bottom: 34px;
    right: 17px;
  }

  #illustration img {
    height: 140px;
  }

  #sign_in {
    margin: -180px 0 0 0;
  }

  #sign_in form {
    min-width: 300px;
    font-size: 18px;
    padding: 35px 30px;
  }

  #sign_in form input {
    padding: 7px 10px;
  }

  #sign_in form button {
    font-size: 18px;
    width: 120px;
    height: 35px;
  }

  h1 {
    font-size: 42px;
  }

  #footer {
    font-size: 16px;
  }
}
