.Popup-form {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1000;

  .modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 24px 28px;
    width: 100%;
    max-width: 404px;
    background-color: #fff;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.32),
      0px 18px 28px 0px rgba(0, 0, 0, 0.16);
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    div {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%;
      background-color: #fee2e2;
      width: 65px;
      height: 65px;
    }
  }

  span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffbdbd;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-size: 18px;
  }

  .Title {
    font-size: 18px;
  }

  button {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    font-family: $family-primary;
    font-weight: 400;
    font-size: $text-sm;
    border: 1px solid $green;
    color: $purple-dark;
    background: $green;
    cursor: pointer;
    transition: all 0.3s;

    &:hover {
      background-color: $green-light;
    }
  }

  &.form-success {
    span {
      background-color: #bdffcc;
    }
  }
}
