/* Coupon Card */

.su-page .su-coupon-card {
  display: grid;
  grid-template-columns: 1fr 420px 260px;
  align-items: center;
  gap: 24px;
  background: #fbfbfc;
  border-radius: 4px;
  border: 2px dashed #d9d9df;
  padding: 28px;
}

.su-page .su-coupon-title {
  font-size: 20px;
  font-weight: 600;
  color: #101828;
  margin: 0;
}

.su-page .su-coupon-input-wrap {
  position: relative;
}

.su-page .su-coupon-input {
  width: 100%;
  padding: 18px 48px 18px 20px;
  border-radius: 10px;
  border: 1px solid #e6e9ee;
  font-size: 16px;
  color: #475467;
}

.su-page .su-coupon-help {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e6e9ee;
  color: #67748a;
  cursor: default;
}

.su-page .su-coupon-apply {
  width: 100%;
  padding: 18px 24px;
  border-radius: 999px;
  border: 2px solid #e6e9ee;
  background: #fff;
  color: #082b49;
  font-weight: 600;
}

.su-page .su-coupon-right {
  text-align: right;
}

@media (max-width: 900px) {
  .su-page .su-coupon-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .su-page .su-coupon-center {
    order: 2;
  }
  .su-page .su-coupon-right {
    order: 3;
  }
}
