@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(40px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes orangeGradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes blobMove {
  0% {
    transform: scale(1) translateY(0) translateX(0);
  }

  50% {
    transform: scale(1.1) translateY(20px) translateX(20px);
  }

  100% {
    transform: scale(1) translateY(0) translateX(0);
  }
}


.auth-card {
  position: relative;
  overflow: hidden !important ;
  padding: 35px 25px 25px 25px;
  margin: 0 auto;
  /* border-radius: 32px; */
  background: rgba(255, 255, 255, 0.90) !important;
  backdrop-filter: blur(22px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(180%) !important;
  border: 2.5px solid rgba(255, 98, 1, 0.13) !important;
  animation: cardFadeIn 0.8s cubic-bezier(.4, 2, .6, 1) !important;
  transition: box-shadow 0.3s, border 0.3s !important;

}


.auth-card::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0%;
  left: -50%;
  width: 420px;
  height: 320px;
  background: radial-gradient(circle at 60% 40%, #ffb86c 0%, #ff6201 60%, #ff6f91 100%);
  opacity: 0.22;
  filter: blur(60px) saturate(120%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: blobMove 8s ease-in-out infinite;
}



.auth-card::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 60%;
  left: 50%;
  width: 420px;
  height: 320px;
  background: radial-gradient(circle at 60% 40%, #ffb86c 0%, #ff6201 60%, #ff6f91 100%);
  opacity: 0.22;
  filter: blur(60px) saturate(120%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: blobMove 8s ease-in-out infinite;
}

.auth-card>* {
  position: relative;
  z-index: 1;
}

.auth-card .card-header-badge {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff6201 60%, #ffb86c 100%);
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 24px #ffb86c44;
  padding: 0.7rem 2.2rem 0.7rem 2.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  letter-spacing: 0.01em;
  border: 2.5px solid #fff;
  z-index: 2;
}

.auth-card .card-header-badge iconify-icon {
  font-size: 1.5rem;
  color: #fff;
}

.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  gap: 0;
  position: relative;
}

.step-indicator span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9ecef;
  color: #2a3547;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 1px 4px #ffb86c22;
  border: 2.5px solid #e0e7ff;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.step-indicator span.active {
  background: linear-gradient(135deg, #ff6201 60%, #ffb86c 100%);
  color: #fff;
  border: 2.5px solid #ff6201;
  box-shadow: 0 0 0 6px #ffb86c44;
  transform: scale(1.12);
}

.step-indicator .step-line {
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg, #ffb86c 0%, #ff6201 100%);
  margin: 0 -6px;
  border-radius: 2px;
  z-index: 0;
  opacity: 0.7;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #ffe3c2;
  border-radius: 6px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 1px 6px #ffb86c33;
}

.progress-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, #ff6201 60%, #ffb86c 100%);
  border-radius: 6px;
  transition: width 0.4s;
  box-shadow: 0 0 8px #ffb86c88;
}

.form-label {
  font-weight: 600;
  color: #2a3547;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1.5px solid #ffe3c2;
  box-shadow: none;
  font-size: 1.08rem;
  padding: 14px 16px 14px 44px;
  background: rgba(255, 255, 255, 0.85);
  transition: border 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
  border: 1.5px solid #ff6201;
  box-shadow: 0 0 0 2px #ffb86c44;
  background: #fff;
}

.form-group .input-icon {
  position: absolute;
  left: 14px;
  top: 65%;
  transform: translateY(-50%);
  color: #ff6201;
  font-size: 1.3rem;
  opacity: 1;
  pointer-events: none;
}

.btn-primary,
.btn-success,
.btn-secondary {
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 12px 36px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px #ffb86c22;
  background: linear-gradient(90deg, #ff6201 60%, #ffb86c 100%);
  border: none;
}

.btn-primary:hover,
.btn-success:hover {
  background: linear-gradient(90deg, #ffb86c 60%, #ff6201 100%);
  box-shadow: 0 4px 24px #ffb86c44;
  transform: scale(1.04);
}

.btn-secondary {
  background: #ffe3c2;
  color: #ff6201;
  border: none;
}

.btn-secondary:hover {
  background: #ff6201;
  color: #fff;
  box-shadow: 0 2px 12px #ffb86c44;
  transform: scale(1.04);
}

.form-check-input:checked {
  background-color: #ff6201;
  border-color: #ff6201;
}

.form-check-label {
  font-weight: 500;
  color: #2a3547;
}

.auth-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff6201;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.auth-card p.mb-9 {
  color: #ff6201;
  font-size: 1.13rem;
  margin-bottom: 1.5rem;
}

.step {
  display: none;
}

.step.active {
  display: block;
}



.modern-header {
  animation: fadeInUp 0.8s ease-out;
}

.logo-circle {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, #fff4e6, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.main-heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ff6600;
  text-shadow: 1px 1px 2px rgba(255, 102, 0, 0.2);
  margin-bottom: 0.3rem;
  font-family: 'Segoe UI', sans-serif;
}

.sub-text {
  font-size: 1rem;
  color: #6c757d;
  letter-spacing: 0.4px;
}

.border-accent {
  border-bottom: 2px solid #ff6600;
  padding-bottom: 3px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}