.survey-message {
  max-width: 600px;
  margin: 60px auto;
  padding: 38px 36px;
  border-radius: 22px;
  border: 1px solid #ebedf2;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(13, 38, 59, 0.08);
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.survey-message__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #f0f2f5;
  box-shadow: 0 8px 22px rgba(13, 38, 59, 0.08);
  font-size: 28px;
  line-height: 1;
}

.survey-message__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #212529;
}

.survey-message__body {
  margin-bottom: 14px;
  font-size: 16px;
  color: #4d5670;
  line-height: 1.8;
}

.survey-message__note {
  margin-bottom: 24px;
  font-size: 14px;
  color: #6f7586;
  line-height: 1.65;
}

    .survey-message__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 10px !important;
  border: 0;
  background-color: #c22a33 !important;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 0.25vw + 1.32rem, 1.8rem) !important;
  font-weight: 600 !important;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: all 500ms linear;
  box-shadow: none;
  cursor: pointer;
  outline: 0;
  position: relative;
}

.survey-message__button:hover,
.survey-message__button:focus {
  opacity: 0.95;
  transform: translateY(-1px);
}

.survey-message--error {
  background: #fdecec;
  border-color: #f5b4b8;
}

.survey-message--error .survey-message__title {
  color: #a3272f;
}

.survey-message--error .survey-message__icon {
  color: #c22a33;
  background: #ffffff;
  border-color: #f5b4b8;
}

.survey-message--error .survey-message__body {
  color: #55565f;
}

.survey-message--error .survey-message__button {
  background-color: #c22a33;
  box-shadow: 0 12px 18px rgba(194, 42, 51, 0.22);
}

.survey-message--error .survey-message__button:hover,
.survey-message--error .survey-message__button:focus {
  background-color: #a61f2a;
}

.survey-message--warning {
  background: #fff8e3;
  border-color: #ffe3a8;
}

.survey-message--warning .survey-message__title,
.survey-message--warning .survey-message__icon {
  color: #8c6a0d;
}

.survey-message--info {
  background: #e9f6fb;
  border-color: #bfe4ef;
}

.survey-message--info .survey-message__title,
.survey-message--info .survey-message__icon {
  color: #0f5d70;
}
