.c-coupon-code {
  font-family: "Courier New", monospace;
  font-size: 1.4em;
  font-weight: bold;
  display: inline-block;
}
.c-coupon-user-email {
  font-family: "Courier New", monospace;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  margin: 5px 0;
}
.c-coupon-info-box {
  justify-content: center;
}
@media screen and (min-width: 740px) {
  .c-coupon-info-box {
    justify-content: space-evenly;
  }
}

.countdown {
  font-size: 1.2em;
  color: #dc3545;
  font-weight: bold;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}