.header {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100%;

  h1 {
    color: #151515;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
  }
}

.passkey-container {
  max-width: 885px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 80px;
  padding: 30px 0px 80px;

  .content {
    display: flex;
    flex-direction: column;
    gap: 100px;

    section {
      display: flex;
      flex-direction: column;
      gap: 25px;
      padding: 0;
    }

    .sub-title {
      font-weight: 700;
      font-size: 18px;
      line-height: 28px;
      color: #333333;
      width: 100%;
    }

    .with-lines {
      display: flex;
      align-items: center;
      gap: 20px;

      &::before,
      &::after {
        content: "";
        flex-grow: 1;
        border-bottom: 1px solid #cbd5e0;
      }
    }
  }

  .inquiry {
    width: 100%;
    display: grid;
    place-items: center;
  }

  @media screen and (max-width: 1024px) {
    padding: 30px 40px 60px;
    width: 100%;
  }

  @media screen and (max-width: 768px) {
    padding: 30px 20px 60px;
    width: 100%;
  }
}

.list-button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 330px;
  height: 55px;
  padding: 15px;
  background-color: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: #303036;
  transition: 0.2s;

  &:hover {
    background-color: #ececec;
  }

  &::after {
    font-family: "Font Awesome 6 Free";
    content: "\f054";
    /* biome-ignore lint/suspicious/noShorthandPropertyOverrides: */
    font: var(--fa-font-solid);
    font-size: 10px;
    color: #a0aec0;
  }

  @media screen and (max-width: 1024px) {
    max-width: 370px;
  }
}

.unrecognized-email p {
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  vertical-align: middle;
}
