* {
  box-sizing: border-box;
}

.rltr-payment-message {
    color: red;
    font-size: 18px;
}

.rltr-stripe-form {
  width: 100%;
  min-width: 200px;
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 40px;
  margin-top: auto;
  margin-bottom: auto;
  overflow: scroll;
}

.rltr-stripe-form .hidden {
  display: none;
}

.rltr-stripe-form #payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

.rltr-stripe-form #payment-element {
  margin-bottom: 24px;
  margin-top: 16px;
}

.rltr-stripe-form #email {
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
  display: block;
  margin-top: 0.25rem;
  padding: 0.75rem;
}

.rltr-stripe-form #email-errors {
  margin-top: 4px;
}

/* RLTRsync Primary Button */
.rltr-stripe-form button {
  background: linear-gradient(135deg, #130D60 0%, #1f1a8a 100%);
  color: #ffffff;
  border-radius: 999px; /* pill style */
  border: none;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  box-shadow:
    0 6px 18px rgba(19, 13, 96, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.rltr-stripe-form button:hover {
  background: linear-gradient(135deg, #1a1480 0%, #2a23b8 100%);
  transform: translateY(-1px);
  box-shadow:
    0 10px 26px rgba(19, 13, 96, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.rltr-stripe-form button:active {
  transform: translateY(0);
  box-shadow:
    0 6px 16px rgba(19, 13, 96, 0.25),
    inset 0 2px 6px rgba(0,0,0,0.25);
}

.rltr-stripe-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* spinner/processing state, errors */
.rltr-stripe-form .spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.rltr-stripe-form .spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.rltr-stripe-form .spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.rltr-stripe-form .spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #0055de;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.rltr-stripe-form .spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #0055de;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 600px) {
  .rltr-stripe-form form {
    width: 80vw;
    min-width: initial;
  }
.rltr-stripe-form {
    padding: 10px;
  }
}