.registration-step {
  display: none;
}
.registration-step.active {
  display: block;
}
.identity-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}
.identity-card {
  flex: 1;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--clr-bg);
  position: relative;
}
.identity-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}
.identity-card.active {
  border-color: var(--clr-accent);
  background: rgba(0, 109, 91, 0.04);
}
.identity-card.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.02);
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
.error-hint {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: none;
  font-weight: 600;
}
.identity-card.active::after {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--clr-accent);
  font-size: 1rem;
}
.identity-card i {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
  color: var(--clr-accent);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.identity-card:hover i {
  transform: scale(1.1) rotate(5deg);
}
.identity-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.identity-card p {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
  line-height: 1.3;
}
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
}
.step-dot.active {
  background: var(--clr-accent);
  width: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 109, 91, 0.2);
}
.back-btn {
  background: rgba(0, 0, 0, 0.03);
  border: none;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.back-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--clr-text-main);
}
.form-section-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--clr-accent);
  margin: 2rem 0 1.2rem 0;
  border-bottom: 1px solid rgba(0, 109, 91, 0.1);
  padding-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(0, 109, 91, 0.1),
    transparent
  );
}
.otp-group {
  position: relative;
}
.btn-otp {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-accent);
  color: white;
  border: none;
  padding: 7px 15px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}
.btn-otp:hover {
  background: var(--clr-accent-hover);
  box-shadow: 0 4px 12px rgba(0, 109, 91, 0.15);
}
.btn-otp:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}
.btn-otp.disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  pointer-events: none;
}
.form-label-civic {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.5rem;
  display: block;
}

/* Utils for inline styles */
.min-vh-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.btn-continue-text {
  font-size: 0.95rem; 
  letter-spacing: 0.02em;
}
.category-box {
  background: rgba(0, 0, 0, 0.02);
  border: 1px dashed rgba(0, 0, 0, 0.1);
}
.otp-verified-badge {
  background: #d1e7dd;
  color: #0f5132;
  border-radius: 8px;
  font-size: 0.75rem;
}
.otp-verified-tag {
  position: absolute; 
  right: 10px; 
  top: 50%; 
  transform: translateY(-50%); 
  font-size: 0.7rem;
}
