.card {
  border-radius: 0px !important;
  background-color: #ffffff50 !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  text-transform: uppercase;
  color: #535353 !important;
  font-size: 14px;
}

.step-progress {
  height: 6px;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.step-progress-bar {
  height: 6px;
  background-color: #1bbde8;
  width: 0%;
  transition: width 0.4s ease;
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.option-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
  background-color: #ffffff75 !important;
  max-width: 100%;
  height: 100%;
}

.option-card:hover,
.option-card.active,
.option-card.selected {
  border-color: #1bbde8 !important;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
  transform: scale(1.05);
}

.option-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 4px;
}

.option-card h6 {
  margin-top: 5px;
}

#message {
  font-size: 1rem;
  margin-top: 10px;
}

.apos-modal {
  min-height: 40vh;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 88px;
}

.bg-primary {
  background-color: #00529c !important;
}

.btn-primary {
  background-color: #00529c !important;
}

.apos-container {
  min-height: 100vh;
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: column;
}

.form-control {
  border-radius: 0 !important;
}

.btn {
  border-radius: 0 !important;
}
h6 {
    margin-bottom: unset !important;
}

.iti {
  width: 100% !important;
}
.form-step {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.form-step.active {
  opacity: 1;
  transform: translateY(0);
}
.form-step.active .fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeSlideUp 0.6s forwards ease;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.alert-success {
  color: #006435 !important;
  background-color: #d1e7dd !important;
  border: 1px solid #badbcc !important;
}