body {
  background-color: #ffffff;
}

.tab-btn {
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #111827;
  transition: width 0.3s ease;
}

.tab-btn.active {
  color: #111827;
}

.tab-btn.active::after {
  width: 100%;
}

/* Input Autofill styling fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* Step Connector Lines */
.step-connector {
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: -16px;
  width: 2px;
  background-color: #F3F4F6;
  z-index: 0;
}

.last-step .step-connector {
  display: none;
}

/* Intl Tel Input Tweaks */
.iti {
  width: 100%;
}

.iti__flag-container {
  border: none;
  background: transparent;
}

.iti__selected-flag {
  background: transparent !important;
}

.iti__country-list {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  width: 300px;
  white-space: normal;
}

.avatar-group:hover .avatar-overlay {
  opacity: 1;
}

.progress-bar-fill {
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* OTP Input Styling */
.otp-input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px #111827;
}

/* Password Strength Bar */
.strength-bar {
  transition: width 0.3s ease, background-color 0.3s ease;
}

/* Utility to force show error */
.force-flex {
  display: flex !important;
}