.walet-glass-form {
  width: 100%;
  max-width: 720px;
  margin: 100px auto 0px;
  padding: 28px;
  border-radius: 26px;
  background: transparent;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.walet-glass-title {
  color: #ffffff !important;
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.walet-glass-fields input,
.walet-glass-fields textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.65);
  font-size: 15px;
  outline: none;
}

.walet-glass-fields textarea {
  border-radius: 18px;
  resize: none;
}

.walet-glass-fields input::placeholder,
.walet-glass-fields textarea::placeholder {
  color: #777;
}

.walet-glass-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;

  /* форма */
  border-radius: 35px;
  border: 1px solid #E8590C;

  /* текст */
  font-size: 16px;
  font-weight: 600;
  color: #fff;

  /* ⬇️ НУЖНЫЙ градиент */
  background-color: #F97316;
  background-image:
    linear-gradient(
      188deg,
      rgba(255,255,255,0.55) 0%,
      rgba(255,255,255,0.22) 18%,
      rgba(255,255,255,0.00) 45%
    ),
    linear-gradient(
      220deg,
      #FFB15E 0%,
      #FF9F3F 30%,
      #F97316 65%,
      #E8590C 100%
    );

  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.walet-glass-btn:hover {
  transform: translateY(-1px);
  box-shadow:   0 12px 28px rgba(0,0,0,0.28),
  0 0 0 1px rgba(255,159,63,0.35),
  0 0 22px rgba(255,159,63,0.55);;
}

.walet-glass-note {
  margin-top: 14px;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;              /* тонкий, но читаемый */
  letter-spacing: 0.02em;        /* аккуратный трекинг */

  color: rgba(255,255,255,0.6);  /* вместо opacity */
}


.walet-glass-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.walet-glass-link {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  background: rgba(255,255,255,0.65);
  color: #222;
  transition: background .2s ease;
}

.walet-glass-link:hover {
  background: rgba(255,255,255,0.85);
}

.walet-discount-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.walet-discount-image {
  max-width: 85%;
  height: auto;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.walet-discount-image:hover {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 16px rgba(232, 89, 12, 0.35));
}
