.success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;

  width: 100%;
  height: 100%;

  .success-image {
    flex: 1 1 auto;

    aspect-ratio: 1/1;
    max-width: 70%;
    max-height: 70%;

    object-fit: cover;
  }
}

.card-wrapper {
  margin: 35px 15px 0;

  .field {
    margin-bottom: 15px;

    .field-input {
      width: 100%;
      height: 40px;
      padding-left: 20px;

      border: 1px solid #c5c5c5;
      border-radius: 5px;
    }
  }

  .buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    button:first-child {
      width: 120px;
      margin-right: 15px;
      font-size: 14px;
      font-weight: 500;
    }

    button:last-child {
      width: 150px;

      font-size: 14px;
      font-weight: 500;
      color: #fff;

      background-color: #49ce46;
    }
  }

  .card-description {
    display: block;

    margin: 0;
    margin-bottom: 20px;

    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
  }

  .button-more {
    cursor: pointer;

    display: flex;
    align-items: center;

    width: min-content;
    margin-bottom: 15px;
    margin-left: 20px;

    .more-title {
      color: #939393;
    }

    .more-icon {
      display: flex;
    }
  }
}
