.auth-step {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-step-enter {
  opacity: 0;
  transform: translateY(15px);
}

.channel-card {
  border: 1.5px solid #d9dee3;
  border-radius: 0.5rem;
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
}

.channel-card:hover {
  border-color: #696cff;
  background-color: rgba(105, 108, 255, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.channel-card.active {
  border-color: #696cff;
  background-color: rgba(105, 108, 255, 0.07);
  box-shadow: 0 0 0 0.15rem rgba(105, 108, 255, 0.15);
}

.bg-label-whatsapp {
  background-color: rgba(37, 211, 102, 0.12) !important;
  color: #25D366 !important;
}

.bg-label-email {
  background-color: rgba(105, 108, 255, 0.12) !important;
  color: #696cff !important;
}
