.loading-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFF7FB;
  font-family: 'Nunito', sans-serif;
}
.loading-wrapper {
  text-align: center;
}
.loading-heart {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  background: #E83A78;
  position: relative;
  transform: rotate(-45deg);
  animation: heart-beat 1.2s infinite ease-in-out;
}
.loading-heart-left {
  width: 40px;
  height: 40px;
  background: #E83A78;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: 0;
}
.loading-heart-right {
  width: 40px;
  height: 40px;
  background: #E83A78;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -20px;
}
.loading-text {
  color: #6e5963;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}
@keyframes heart-beat {
  0% { transform: rotate(-45deg) scale(1); }
  20% { transform: rotate(-45deg) scale(1.15); }
  40% { transform: rotate(-45deg) scale(1); }
  60% { transform: rotate(-45deg) scale(1.15); }
  80% { transform: rotate(-45deg) scale(1); }
  100% { transform: rotate(-45deg) scale(1); }
}
