/* Email signup */
.email-signup {
  display: flex;
  flex-grow: 1;
  border-radius: 0.25em;
  outline: 0.08em solid var(--color-gray-2);
  padding: 0.25em;
  max-width: 540px;
  min-width: 440px;
  width: 100%;
  position: relative;
  background-color: var(--color-white);
  label {
    font-family: var(--font-family-mono);
    font-size: 1rem;
    position: absolute;
    left: 0.9em;
    top: 52%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.2s ease;
    color: var(--color-black);
    opacity: 0.6;
  }
  input {
    flex-grow: 1;
    font-size: 1rem;
    background-color: var(--color-white);
    font-family: var(--font-family-mono);
    border: none;
    padding: 0.9em 0.9em 0.5em 0.9em;
    line-height: 1;
    border-radius: 0.25em;
    &:focus {
      outline: none;
    }
    &:focus + label,
    &:not(:placeholder-shown) + label {
      top: 1em;
      left: 1.75em;
      font-size: 0.65rem;
      opacity: 1;
    }
  }
  button {
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 0.85em 0.85em;
    line-height: 1;
    border-radius: 0.25em;
    font-size: 1rem;
    cursor: pointer;
  }
}

/* Email signup responsive for small screens */
@media screen and (max-width: 580px) {
  .email-signup {
    flex-direction: column;
    min-width: unset;
    max-width: 100%;
    gap: 0;

    label {
      left: 50%;
      transform: translateX(-50%);
      top: 1em;
      text-align: center;
      z-index: 1;
      font-size: 1rem;
    }

    input {
      width: auto;
      max-width: 100%;
      text-align: center;
      padding: 1.2em 0.5em 0.65em 0.5em;

      &:focus + label,
      &:not(:placeholder-shown) + label {
        left: 50%;
        transform: translateX(-50%);
        top: 0.4em;
      }
    }

    button {
      width: 100%;
      padding: 0.85em 1em;
    }
  }
}
