css
/ Стиль для кнопки загрузки файла /
.t-upwidget-containerbutton.t-text {
  background-color: #28a745 !important; / зелёный фон /
  color: white !important;
  padding: 10px 25px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border: none !important;
  transition: background-color 0.3s ease;
}

.t-upwidget-containerbutton.t-text:hover {
  background-color: #218838 !important; / более тёмный зелёный при наведении /
}

/ Чтобы кнопка загрузки не наследовала стили кнопки отправки /
.t-upwidget-containerbutton.t-text.t-submit {
  all: unset; / сбросить все стили кнопки отправки, если вдруг есть /
  / затем применять стили из блока выше /
  background-color: #28a745 !important;
  color: white !important;
  padding: 10px 25px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border: none !important;
  transition: background-color 0.3s ease;
}