@import url("https://fonts.googleapis.com/css?family=Rubik:700&display=swap");
.button-body {
  box-sizing: border-box;
}
.button-body::before, .button-body::after {
  box-sizing: border-box;
}

#submit-button {
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  width: 200px;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 30px;
  background: #fff;
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
}
#submit-button.learn-more {
  font-weight: 900;
  color: #263822;
  text-transform: uppercase;
  padding: 1.25em 2em;
  background: #e6fff4;
  border: 2px solid #85b198;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}
#submit-button.learn-more::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #8FD4BC;
  border-radius: inherit;
  box-shadow: 0 0 0 2px #85b198, 0 0.625em 0 0 #e2fff1;
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
#submit-button.learn-more:active {
  background: #e9ffe9;
  transform: translate(0em, 0.75em);
}
#submit-button.learn-more:active::before {
  box-shadow: 0 0 0 2px #85b198, 0 0 #e2fff1;
  transform: translate3d(0, 0, -1em);
}

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