.js-successbox.t-form__successbox {
  background-color: #14141A !important;
  color: #ffffff !important;

  display: none; /* важно — чтобы не ломать поведение Tilda */

  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;

  margin-top: 180px;
}


/* Попап успешной отправки */

.t-form-success-popup__wrapper {
    background: #14141A !important;
    color: #ffffff !important;

    width: 700px !important;
    max-width: 90vw !important;

    border-radius: 16px !important;
    padding: 50px 60px !important;

    font-family: "Manrope", sans-serif !important;
}

/* Весь текст внутри */

.t-form-success-popup__text,
.t-form-success-popup__text *,
#tildaformsuccesspopuptext,
#tildaformsuccesspopuptext * {
    color: #ffffff !important;
    font-family: "Manrope", sans-serif !important;
}

/* Заголовок */

.t-form-success-popup__text strong,
.t-form-success-popup__text b,
.t-form-success-popup__text span {
    color: #ffffff !important;
    font-family: "Manrope", sans-serif !important;
}

/* Ссылки */

.t-form-success-popup__wrapper a {
    color: #ffffff !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255,255,255,.7) !important;
}

/* Убираем зелёную галочку */

.t-form-success-popup__wrapper svg:not(.t-form-success-popup__close-icon) {
    display: none !important;
}

/* Крестик закрытия */

.t-form-success-popup__close-icon {
    fill: #ffffff !important;
}

/* Чуть крупнее текст */

.t-form-success-popup__text {
    font-size: 18px !important;
    line-height: 1.7 !important;
}





.t-form-success-popup__wrapper {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}