.uc-form .t-input-group_nm,
.uc-form .t-input-group_in,
.uc-form .t-input-group_ph {
    backdrop-filter: blur(5px);
    background-color: rgba(245, 245, 245, 0.2); /* светло-серый с прозрачностью */
    border-radius: 10px;
}








.t-calc__prefix-text {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.t-calc {
  display: inline-flex;
  align-items: center;
  background-color: #ece9ff;
  color: #0d0e26;
  font-size: 26px;
  font-weight: 600;
  padding: 3px 5px;
  border-radius: 6px;
  line-height: 1.2;
}

.t-calc::after {
  content: "\00A0₽";
}

.t-calc::before {
  content: "~\00A0";
}

/* Мобильная адаптация */
@media (max-width: 767px) {
  .t-calc,
  .t-calc__prefix-text {
    font-size: 22px;
    line-height: 1.3;
  }
}

