 .form-pay {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
}

.title-pay {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #12e58b;
}

.title-pay::before {
  width: 18px;
  height: 18px;
}

.title-pay::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.title-pay::before,
.title-pay::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: #12e58b;
}

.message-pay,
.signin-pay {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}

.signin-pay {
  text-align: center;
}

.signin-pay a:hover {
  text-decoration: underline 12e58b;
}

.signin-pay a {
  color: #12e58b;
}

.flex-pay {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form-pay label {
  position: relative;
}

.form-pay label .input-pay {
  background-color: #333;
  color: #fff;
  width: 100%;
  padding: 20px 05px 05px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form-pay label .input-pay + span {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 10px;
  top: 0px;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form-pay label .input-pay:placeholder-shown + span {
  top: 12.5px;
  font-size: 0.9em;
}

.form-pay label .input-pay:focus + span,
.form-pay label .input-pay:valid + span {
  color: #12e58b;
  top: 0px;
  font-size: 0.7em;
  font-weight: 600;
}

.input-pay {
  font-size: medium;
}

.submit-pay {
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transform: .3s ease;
  background-color: #12e58b;
}

.submit-pay:hover {
  background-color: #13aa69;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

    .container-form {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .form-pay {
    max-width: 700px;
  }
}

.form-pay label {
  width: 100%;
}

.input-pay {
  font-size: medium;
  width: 100%;
  padding: 16px 10px 5px 10px;
  border-radius: 10px;
  border: 1px solid rgba(105, 105, 105, 0.397);
  background-color: #333;
  color: #fff;
}

.submit-pay {
  transition: 0.3s ease;
  background-color: #12e58b;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  color: #fff;
}

.submit-pay:hover {
  background-color: #13aa69;
}


/* Contenedor principal */
.content-info-pay {
  background-color: #181818;
  color: #f1f1f1;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(18, 229, 139, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Título del paquete */
.content-info-pay h3 {
  font-size: 26px;
  font-weight: 700;
  color: #12e58b;
  margin-bottom: 20px;
}

/* Estilo base para ambos párrafos */
.content-info-pay p {
  font-size: 15.5px;
  color: #cfcfcf;
  margin-bottom: 10px;
}

/* Estilo para duración */
.content-info-pay p.duracion {
  font-weight: 500;
  color: #9ee9cf; /* Verde claro */
  background-color: rgba(18, 229, 139, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}

/* Estilo para total a pagar */
#totalPagar {
  font-weight: 600;
  font-size: 17px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.07);
  padding: 10px 15px;
  border-left: 5px solid #12e58b;
  border-radius: 6px;
  margin-top: 15px;
  display: inline-block;
}


/* Lista de características */
.content-info-pay ul {
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
}

.content-info-pay ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15.5px;
  color: #e4e4e4;
}

.content-info-pay ul li i {
  color: #12e58b;
  margin-right: 10px;
  font-size: 18px;
}

/* Toggle del dominio extra */
.form-check-label {
  color: #ffffff;
  font-size: 14px;
}

 /* From Uiverse.io by 3HugaDa3 */
.checkbox-wrapper {
  --checkbox-size: 25px;
  --checkbox-color: #00ff88;
  --checkbox-shadow: rgba(0, 255, 136, 0.3);
  --checkbox-border: rgba(0, 255, 136, 0.7);
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 10px;
}

.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-wrapper .checkmark {
  position: relative;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  border: 2px solid var(--checkbox-border);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px var(--checkbox-shadow);
  overflow: hidden;
}

.checkbox-wrapper .checkmark::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--checkbox-color), #00ffcc);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(0) rotate(-45deg);
}

.checkbox-wrapper input:checked ~ .checkmark::before {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.checkbox-wrapper .checkmark svg {
  width: 0;
  height: 0;
  color: #1a1a1a;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.checkbox-wrapper input:checked ~ .checkmark svg {
  width: 18px;
  height: 18px;
  transform: rotate(360deg);
}

.checkbox-wrapper:hover .checkmark {
  border-color: var(--checkbox-color);
  transform: scale(1.1);
  box-shadow:
    0 0 20px var(--checkbox-shadow),
    0 0 40px var(--checkbox-shadow),
    inset 0 0 10px var(--checkbox-shadow);
}

.checkbox-wrapper input:checked ~ .checkmark {
  animation: pulse 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px var(--checkbox-shadow);
  }
  50% {
    transform: scale(0.9);
    box-shadow:
      0 0 30px var(--checkbox-shadow),
      0 0 50px var(--checkbox-shadow);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px var(--checkbox-shadow);
  }
}

.checkbox-wrapper .label {
  margin-left: 15px;
  font-family: "Segoe UI", sans-serif;
  color: var(--checkbox-color);
  font-size: 18px;
  text-shadow: 0 0 10px var(--checkbox-shadow);
  opacity: 0.9;
  transition: all 0.3s;
}

.checkbox-wrapper:hover .label {
  opacity: 1;
  transform: translateX(5px);
}

/* Glowing dots animation */
.checkbox-wrapper::after,
.checkbox-wrapper::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--checkbox-color);
  opacity: 0;
  transition: all 0.5s;
}

.checkbox-wrapper::before {
  left: -10px;
  top: 50%;
}

.checkbox-wrapper::after {
  right: -10px;
  top: 50%;
}

.checkbox-wrapper:hover::before {
  opacity: 1;
  transform: translateX(-10px);
  box-shadow: 0 0 10px var(--checkbox-color);
}

.checkbox-wrapper:hover::after {
  opacity: 1;
  transform: translateX(10px);
  box-shadow: 0 0 10px var(--checkbox-color);
}
