.home {
  background: rgb(31 41 55);
  background: linear-gradient(0deg, var(--gray-800) 0%, rgba(17 17 17 / 1) 100%);

  & main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100dvh;
    padding: 1rem;

    @media (width >= 600px) {
      gap: 4rem;
      padding: 4rem 2rem;
    }

    & img.bg-squiggles {
      position: fixed;
      bottom: -20rem;
      left: 0;
      z-index: 1;
    }

    & > footer {
      color: var(--gray-200);
      font-size: 0.875rem;
      text-align: center;
      z-index: 10;

      @media (width >= 600px) {
        font-size: 1rem;
      }

      & svg {
        height: 1rem;
        position: relative;
        top: 1px;
        width: 2.5rem;
      }
    }
  }

  & hgroup {
    align-items: center;
    color: var(--gray-200);
    display: flex;
    flex-direction: column;
    z-index: 10;

    & h1 {
      align-items: center;
      display: flex;
      font-family: georgia, serif;
      font-size: 1.25rem;
      gap: 0.5rem;
      text-align: center;

      @media (width >= 600px) {
        font-size: 2rem;
        letter-spacing: -1px;
      }

      & span svg {
        fill: var(--gray-200);
        height: 20px;
        position: relative;
        top: 1px;
        width: 20px;

        @media (width >= 600px) {
          height: 30px;
          width: 30px;
        }
      }
    }

    & h2 {
      display: block;
      font-family: system-ui, sans-serif;
      font-size: 1rem;
      font-weight: 500;
    }
  }

  & svg.squiggle {
    display: block;
    margin: 0.5rem auto;
  }

  & form {
    background: var(--gray-200);
    border-radius: 0.5rem;
    margin: 0 auto;
    max-width: 550px;
    padding: 2rem 1rem;
    width: 100%;
    z-index: 10;

    @media (width >= 600px) {
      padding: 2rem 4rem;
    }

    & input[type="text"], 
    & input[type="email"],
    input[type="password"],
    & textarea {
      background: white !important;
    }

    & svg.squiggle {
      opacity: 0.2;
    }

    & footer {
      justify-content: center;
      padding: 1rem 0;

      & .btn {
        padding: 0.5rem 0.75rem;
        width: 100%;
      }
    }

    & p:not(.hint) {
      font-size: 0.875rem;
      padding: 1rem;
      text-align: center;
    }
  }

  & form p.title_2fa {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .home-gradient {
    background: rgb(31 41 55);
    background: linear-gradient(0deg, var(--gray-800) 0%, rgba(17 17 17 / 1) 100%);
    height: 100dvh;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
  }
}