#form-block {
  right: 1.5rem;
  bottom: 2.5rem;
  width: 28rem;
  background: var(--c-gray-alpha);
  backdrop-filter: blur(4rem);
  -moz-backdrop-filter: blur(4rem);
  -webkit-backdrop-filter: blur(4rem);
  translate: 0 calc(100% + 2.5rem); /* Hidden by default */
  transition: translate 1000ms ease-in-out;
  z-index: 500;
}

@media only screen and (max-width: 600px) {
  #form-block {
    right: 12px;
    bottom: 1rem;
    left: 12px;
    width: calc(100vw - 24px);
  }
}

#form-block[data-show="true"] {
  translate: 0 0; /* Shown */
}

#form-block button {
  top: .5rem;
  right: 12px;
  height: fit-content;
}

#form-block a {
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 125%;
  max-width: 90% !important;
  padding-right: 0 !important;
  color: rgb(215, 215, 215) !important;
  letter-spacing: 0.1px;
}

@media only screen and (max-width: 600px) {
  #form-block a {
    font-size: 12px;
    line-height: 16px;
  }
}

#form-block a:hover {
  color: rgb(253, 253, 253) !important;
  transition: color 0.3s ease-in-out;
}

#form-block svg {
  width: 9px;
  height: 9px;
  color: rgb(186, 186, 186) !important;
}
