.terms-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.terms-link:hover {
  opacity: 0.85;
}
/* Terms agreement box */
.terms-box {
  margin-top: 14px;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

/* Hide native checkbox */
.terms-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Custom checkbox UI */
.check-ui {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.15s ease;
}

/* Checkmark */
.check-ui::after {
  content: "✓";
  font-size: 14px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.15s ease;
}

/* Checked state */
.terms-check input:checked + .check-ui {
  background: rgba(168,85,247,0.35);
  border-color: rgba(168,85,247,0.9);
}

.terms-check input:checked + .check-ui::after {
  opacity: 1;
  transform: scale(1);
}

/* Disabled state */
.terms-check input:disabled + .check-ui {
  opacity: 0.5;
  cursor: not-allowed;
}

.terms-text {
  font-size: 13px;
  line-height: 1.45;
}
