.voucher {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.35rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, #130608, #61111d);
  box-shadow: 0 18px 36px rgba(9, 10, 14, 0.18);
}

.voucher__media {
  display: flex;
  flex: 0 0 110px;
  align-items: center;
  justify-content: center;
}

.voucher__product {
  display: block;
  width: min(92px, 100%);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.voucher__body {
  flex: 1;
  min-width: 0;
}

.voucher__eyebrow {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.voucher__title {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.3;
}

.voucher__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem !important;
  line-height: 1.6;
  text-align: left !important;
}

.voucher__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.voucher__point {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.form_content {
  padding: 1.1rem;
  border: 1px solid #ead7da;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #fff6f7);
  box-shadow: 0 20px 40px rgba(18, 21, 28, 0.08);
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.form__item {
  grid-column: span 1 / span 1;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  color: #22262d;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left !important;
}

input:not([type="radio"]):not([type="checkbox"]),
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid #d7c2c6;
  border-radius: 16px;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.35;
  appearance: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:not([type="radio"]):not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #cf1a2d;
  box-shadow: 0 0 0 4px rgba(217, 31, 49, 0.12);
}

.form__req {
  display: inline-block;
  margin-left: 0.25rem;
  color: #cf1a2d;
}

.form__info {
  display: inline-block;
  margin-left: 0.25rem;
  color: #717784;
  font-size: 0.82rem;
}

button[type="submit"] {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff3d53, #c11429);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  appearance: button;
  box-shadow: 0 18px 30px rgba(217, 31, 49, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

button[type="submit"]:hover {
  background: linear-gradient(135deg, #ff5063, #b70f23);
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(217, 31, 49, 0.3);
}

button[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(217, 31, 49, 0.18);
}

@media (min-width: 768px) {
  .form__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .form__item {
    grid-column: span 6 / span 6;
  }
}

@media (max-width: 767px) {
  .voucher {
    align-items: flex-start;
    flex-direction: column;
  }

  .voucher__media {
    flex-basis: auto;
  }

  .voucher__title {
    font-size: 1rem;
  }

  .form_content {
    padding: 1rem;
  }
}
