/* Signup form (index-two.html) - design identical to provided screenshot */

.sign-up-form {
  background: #ffffff;
  border-radius: 24px;
  border: 2px solid rgba(17, 24, 39, 0.15);
  padding: 40px;
  max-width: 1040px;
  margin: 0 auto;
}

.sign-up-form .signup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 26px;
}

.sign-up-form .single-input-wrapper {
  display: flex;
  flex-direction: column;
}

.sign-up-form .single-input-wrapper label {
  font-size: 20px;
  font-weight: 700;
  color: #0b0f16;
  margin-bottom: 14px;
  line-height: 1.1;
}

.sign-up-form .single-input-wrapper input {
  height: 64px;
  border-radius: 16px;
  border: 2px solid rgba(17, 24, 39, 0.12);
  background: #ffffff;
  padding: 0 18px;
  font-size: 16px;
  color: #0b0f16;
}

.sign-up-form .single-input-wrapper input:focus {
  outline: none;
  border-color: rgba(17, 24, 39, 0.35);
  box-shadow: 0 0 0 4px rgba(248, 200, 4, 0.22);
}

.sign-up-form .signup-plan {
  margin-top: 26px;
}

.sign-up-form .signup-plan-title {
  font-size: 22px;
  font-weight: 800;
  color: #0b0f16;
  margin: 0 0 16px;
}

.sign-up-form .signup-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sign-up-form .signup-plan-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 26px;
  border-radius: 18px;
  border: 2px solid rgba(17, 24, 39, 0.35);
  background: #ffffff;
  color: #0b0f16;
  cursor: pointer;
  user-select: none;
  min-height: 132px;
}

.sign-up-form .signup-plan-card input[type="radio"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.sign-up-form .signup-plan-radio {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(17, 24, 39, 0.35);
  margin-top: 2px;
  flex: 0 0 auto;
  position: relative;
  background: transparent;
}

.sign-up-form .signup-plan-radio::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: transparent;
}

.sign-up-form .signup-plan-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sign-up-form .signup-plan-duration {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.sign-up-form .signup-plan-price {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

/* Selected state (synced by small inline JS) */
.sign-up-form .signup-plan-card.is-active {
  background: #0b0f16;
  border-color: #0b0f16;
  color: #ffffff;
}

.sign-up-form .signup-plan-card.is-active .signup-plan-radio {
  border-color: rgba(255, 255, 255, 0.9);
}

.sign-up-form .signup-plan-card.is-active .signup-plan-radio::after {
  background: rgba(255, 255, 255, 0.95);
}

/* Best offer badge */
.sign-up-form .signup-plan-badge {
  display: none;
}

.sign-up-form .signup-plan-card.is-best-offer .signup-plan-badge {
  display: inline-flex;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  background: #ff4545;
  color: #ffffff;
  line-height: 1;
  z-index: 2;
}

/* Consent */
.sign-up-form .signup-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 24px;
  cursor: pointer;
}

.sign-up-form .signup-consent input[type="checkbox"] {
  width: 30px !important;
  height: 18px !important;
  border-radius: 999px;
  border: 2px solid rgba(17, 24, 39, 0.55);
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  position: relative;
  flex: 0 0 auto;
}

.sign-up-form .signup-consent input[type="checkbox"]:checked {
  background: #0b0f16;
  border-color: #0b0f16;
}

.sign-up-form .signup-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: #ffffff;
}

.sign-up-form .signup-consent span {
  font-size: 20px;
  font-weight: 500;
  color: #1a2230;
  line-height: 1.35;
}

/* CTA button */
.sign-up-form .signup-cta {
  width: 100%;
  height: 78px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #f8c804, #ffc4a9);
  color: #0b0f16;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sign-up-form .signup-cta:hover {
  filter: brightness(0.98);
}

.sign-up-form .signup-cta:focus {
  outline: none;
  box-shadow: 0 0 0 5px rgba(248, 200, 4, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .sign-up-form {
    padding: 28px;
  }

  .sign-up-form .signup-grid,
  .sign-up-form .signup-plan-grid {
    grid-template-columns: 1fr;
  }
}

