div[data-exact-match-section] {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin: 0 auto;
  padding: 0 21px 63px;
  text-align: center;
  width: 100%;

  * {
    font-size: 16px;
    margin: unset;
    padding: unset;
  }

  div[data-customer-id] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  div[data-exact-match-result] {
    &:has(> a[data-exact-match-account]) {
      align-items: center;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
    }

    a[data-exact-match-account] {
      all: unset;
      border-radius: 4px;
      cursor: pointer;
      display: inline-block;
      font-size: 16px;
      font-weight: 400;
      padding: 1rem 2rem;
      width: 175px;

      &:nth-of-type(1) {
        background-color: #ed7d31;
        border: 1px solid #ed7d31;
        color: #fff;

        &:hover {
          background-color: #fff;
          color: #000;
        }
      }

      &:nth-of-type(2) {
        background-color: #fff;
        border: 1px solid #ed7d31;
        color: #000;

        &:hover {
          background-color: #ed7d31;
          color: #fff;
        }
      }
    }
  }

  form[data-exact-match] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;

    button,
    input {
      max-width: 100%;
      padding: 1rem 2rem;
      width: 100%;
    }

    button {
      background-color: #ef521b;
      border: 1px solid #ef521b;
      border-radius: 4px;
    }

    input:focus-visible {
      box-shadow: none;
      outline: none;
    }
  }

  ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
  }

  .text-red {
    color: #f00;
  }
}

@media (min-width: 750px) {
  div[data-exact-match-section] {
    gap: 28px;
    padding: 0 28px 84px;

    div[data-exact-match-result] {
      &:has(> a[data-exact-match-account]) {
        flex-direction: row;
        gap: 3rem;
      }
    }

    form[data-exact-match] {
      width: 75%;
    }
  }
}
