* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #5b3b46;
  background: linear-gradient(135deg, #ffdce8 0%, #ffeef3 35%, #fff7fb 100%);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* =========================
   ROMANTIC PARTICLES
========================= */

.romantic-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle-layer {
  position: absolute;
  inset: 0;
}

.particle-layer span {
  position: absolute;
  bottom: -10%;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}

/* -------------------------
   HEARTS
------------------------- */

.hearts .heart {
  color: rgba(255, 120, 170, 0.72);
  filter: drop-shadow(0 0 10px rgba(255, 190, 220, 0.28));
  animation-name: floatHeart;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hearts .heart:nth-child(1) {
  left: 6%;
  font-size: 18px;
  animation-duration: 13s;
  animation-delay: 0s;
}

.hearts .heart:nth-child(2) {
  left: 19%;
  font-size: 24px;
  animation-duration: 16s;
  animation-delay: 2s;
}

.hearts .heart:nth-child(3) {
  left: 34%;
  font-size: 20px;
  animation-duration: 14s;
  animation-delay: 4s;
}

.hearts .heart:nth-child(4) {
  left: 58%;
  font-size: 22px;
  animation-duration: 17s;
  animation-delay: 1s;
}

.hearts .heart:nth-child(5) {
  left: 78%;
  font-size: 19px;
  animation-duration: 15s;
  animation-delay: 5s;
}

.hearts .heart:nth-child(6) {
  left: 91%;
  font-size: 23px;
  animation-duration: 18s;
  animation-delay: 3s;
}

@keyframes floatHeart {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  25% {
    transform: translate3d(-12px, -20vh, 0) scale(0.95) rotate(-6deg);
  }
  50% {
    transform: translate3d(10px, -48vh, 0) scale(1.05) rotate(6deg);
  }
  75% {
    transform: translate3d(-8px, -78vh, 0) scale(1.12) rotate(-8deg);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(6px, -115vh, 0) scale(1.18) rotate(8deg);
    opacity: 0;
  }
}

/* -------------------------
   PETALS / FLOWERS
------------------------- */

.petals .petal {
  color: rgba(236, 188, 230, 0.78);
  text-shadow: 0 0 10px rgba(255, 230, 240, 0.22);
  animation-name: floatPetal;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.petals .petal:nth-child(1) {
  left: 3%;
  font-size: 20px;
  animation-duration: 18s;
  animation-delay: 0s;
}

.petals .petal:nth-child(2) {
  left: 14%;
  font-size: 24px;
  animation-duration: 22s;
  animation-delay: 3s;
}

.petals .petal:nth-child(3) {
  left: 27%;
  font-size: 18px;
  animation-duration: 19s;
  animation-delay: 6s;
}

.petals .petal:nth-child(4) {
  left: 41%;
  font-size: 22px;
  animation-duration: 24s;
  animation-delay: 2s;
}

.petals .petal:nth-child(5) {
  left: 56%;
  font-size: 21px;
  animation-duration: 20s;
  animation-delay: 7s;
}

.petals .petal:nth-child(6) {
  left: 69%;
  font-size: 25px;
  animation-duration: 23s;
  animation-delay: 1s;
}

.petals .petal:nth-child(7) {
  left: 83%;
  font-size: 19px;
  animation-duration: 21s;
  animation-delay: 5s;
}

.petals .petal:nth-child(8) {
  left: 94%;
  font-size: 23px;
  animation-duration: 25s;
  animation-delay: 4s;
}

@keyframes floatPetal {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.9);
    opacity: 0;
  }
  8% {
    opacity: 0.85;
  }
  20% {
    transform: translate3d(10px, -18vh, 0) rotate(20deg) scale(1);
  }
  40% {
    transform: translate3d(-18px, -38vh, 0) rotate(65deg) scale(1.05);
  }
  60% {
    transform: translate3d(16px, -62vh, 0) rotate(110deg) scale(1.08);
  }
  80% {
    transform: translate3d(-12px, -86vh, 0) rotate(160deg) scale(1.12);
    opacity: 0.65;
  }
  100% {
    transform: translate3d(8px, -118vh, 0) rotate(220deg) scale(1.15);
    opacity: 0;
  }
}

/* -------------------------
   SPARKLES
------------------------- */

.sparkles .sparkle {
  color: rgba(255, 245, 215, 0.95);
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.65),
    0 0 14px rgba(255, 228, 196, 0.45),
    0 0 22px rgba(255, 240, 220, 0.28);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* từng hạt sáng dùng 2 animation cùng lúc:
   1) bay lên nhẹ
   2) lấp lánh riêng */
.sparkles .sparkle:nth-child(1) {
  left: 8%;
  font-size: 11px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 15s, 2.4s;
  animation-delay: 0s, 0.3s;
}

.sparkles .sparkle:nth-child(2) {
  left: 17%;
  font-size: 14px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 18s, 2.8s;
  animation-delay: 2s, 0.8s;
}

.sparkles .sparkle:nth-child(3) {
  left: 29%;
  font-size: 10px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 14s, 2.2s;
  animation-delay: 4s, 0.5s;
}

.sparkles .sparkle:nth-child(4) {
  left: 43%;
  font-size: 13px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 17s, 3s;
  animation-delay: 1s, 1.2s;
}

.sparkles .sparkle:nth-child(5) {
  left: 52%;
  font-size: 9px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 16s, 2.1s;
  animation-delay: 5s, 0.2s;
}

.sparkles .sparkle:nth-child(6) {
  left: 63%;
  font-size: 12px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 20s, 2.6s;
  animation-delay: 3s, 1s;
}

.sparkles .sparkle:nth-child(7) {
  left: 74%;
  font-size: 10px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 15s, 2.9s;
  animation-delay: 6s, 0.6s;
}

.sparkles .sparkle:nth-child(8) {
  left: 84%;
  font-size: 14px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 18s, 3.2s;
  animation-delay: 2.5s, 1.4s;
}

.sparkles .sparkle:nth-child(9) {
  left: 90%;
  font-size: 9px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 16s, 2.3s;
  animation-delay: 7s, 0.4s;
}

.sparkles .sparkle:nth-child(10) {
  left: 96%;
  font-size: 12px;
  animation-name: floatSparkle, twinkleSparkle;
  animation-duration: 19s, 2.7s;
  animation-delay: 4.5s, 1.1s;
}

@keyframes floatSparkle {
  0% {
    transform: translate3d(0, 0, 0) scale(0.6);
    opacity: 0;
  }
  8% {
    opacity: 0.8;
  }
  30% {
    transform: translate3d(6px, -24vh, 0) scale(0.9);
  }
  60% {
    transform: translate3d(-5px, -58vh, 0) scale(1);
  }
  85% {
    transform: translate3d(4px, -92vh, 0) scale(1.05);
    opacity: 0.45;
  }
  100% {
    transform: translate3d(-3px, -118vh, 0) scale(1.08);
    opacity: 0;
  }
}

@keyframes twinkleSparkle {
  0%, 100% {
    filter: brightness(0.95);
    opacity: 0.3;
  }
  25% {
    filter: brightness(1.35);
    opacity: 0.95;
  }
  50% {
    filter: brightness(1.8);
    opacity: 0.55;
  }
  75% {
    filter: brightness(1.2);
    opacity: 0.9;
  }
}

/* -------------------------
   FLOATING WORDS
------------------------- */

.words .word {
  position: absolute;
  bottom: -12%;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.3px;
  color: rgba(255, 245, 250, 0.88);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.45),
    0 0 18px rgba(255, 210, 230, 0.22);
  white-space: nowrap;
  opacity: 0;
  animation-name: floatWordWave;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform-origin: center center;
  will-change: transform, opacity;
}

.words .word:nth-child(1) {
  left: 7%;
  font-size: 14px;
  animation-duration: 24s;
  animation-delay: 0s;
}

.words .word:nth-child(2) {
  left: 18%;
  font-size: 13px;
  animation-duration: 28s;
  animation-delay: 6s;
}

.words .word:nth-child(3) {
  left: 31%;
  font-size: 14px;
  animation-duration: 26s;
  animation-delay: 10s;
}

.words .word:nth-child(4) {
  left: 44%;
  font-size: 15px;
  animation-duration: 30s;
  animation-delay: 4s;
}

.words .word:nth-child(5) {
  left: 59%;
  font-size: 13px;
  animation-duration: 25s;
  animation-delay: 12s;
}

.words .word:nth-child(6) {
  left: 72%;
  font-size: 14px;
  animation-duration: 29s;
  animation-delay: 8s;
}

.words .word:nth-child(7) {
  left: 84%;
  font-size: 13px;
  animation-duration: 27s;
  animation-delay: 14s;
}

.words .word:nth-child(8) {
  left: 92%;
  font-size: 14px;
  animation-duration: 31s;
  animation-delay: 11s;
}

@keyframes floatWordWave {
  0% {
    transform: translate3d(0, 0, 0) scale(0.72) rotate(0deg);
    opacity: 0;
  }
  10% {
    transform: translate3d(6px, -10vh, 0) scale(0.92) rotate(1deg);
    opacity: 0.4;
  }
  22% {
    transform: translate3d(-10px, -22vh, 0) scale(1.08) rotate(-1deg);
    opacity: 0.82;
  }
  35% {
    transform: translate3d(12px, -35vh, 0) scale(1.18) rotate(1.5deg);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(-14px, -50vh, 0) scale(1.08) rotate(-1.5deg);
    opacity: 0.75;
  }
  65% {
    transform: translate3d(12px, -66vh, 0) scale(0.96) rotate(1deg);
    opacity: 0.56;
  }
  80% {
    transform: translate3d(-9px, -84vh, 0) scale(0.82) rotate(-1deg);
    opacity: 0.28;
  }
  100% {
    transform: translate3d(6px, -115vh, 0) scale(0.66) rotate(0deg);
    opacity: 0;
  }
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.login-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 182, 193, 0.35);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(214, 124, 154, 0.20);
  padding: 32px 28px 28px;
  text-align: center;
}

.top-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffb8cc, #ffcddd);
  color: #7f4355;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.avatar-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd0dd, #fff0f5);
  box-shadow: 0 10px 25px rgba(255, 155, 180, 0.25);
  font-size: 36px;
}

.login-card h1 {
  font-size: 32px;
  line-height: 1.2;
  color: #7b4255;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #8a6170;
  margin-bottom: 26px;
}

.login-form {
  text-align: left;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #7c5261;
}

.input-group input {
  width: 100%;
  height: 50px;
  border: 1px solid #f1c4d2;
  border-radius: 14px;
  outline: none;
  padding: 0 16px;
  font-size: 15px;
  color: #5b3b46;
  background: #fffafd;
  transition: all 0.25s ease;
}

.input-group input:focus {
  border-color: #ef9fb8;
  box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.18);
}

.form-row {
  margin: 8px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8b6673;
  font-size: 14px;
  cursor: pointer;
}

.remember-me input {
  accent-color: #eb8fad;
}

.forgot-link {
  text-decoration: none;
  color: #d36f92;
  font-size: 14px;
  font-weight: 600;
}

.forgot-link:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #f79ab5, #f8b8c8);
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(247, 154, 181, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(247, 154, 181, 0.35);
}

.music-box {
  margin-top: 18px;
}

.music-btn {
  border: none;
  background: #fff0f5;
  color: #b85e7e;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.music-btn:hover {
  background: #ffdce8;
}

.music-status {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #8d6572;
}

.register-text {
  margin-top: 20px;
  font-size: 14px;
  color: #7b6070;
}

.register-text a {
  color: #d86d92;
  font-weight: 700;
  text-decoration: none;
}

.register-text a:hover {
  text-decoration: underline;
}

.love-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff4f7, #fff9fb);
  color: #8d6572;
  font-size: 14px;
  line-height: 1.7;
  border: 1px dashed #f3c2d2;
}

@media (max-width: 768px) {
  .page-wrapper {
    padding: 20px;
  }

  .login-card {
    max-width: 100%;
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .login-card h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 14px;
  }

  .input-group input {
    height: 48px;
  }

  .login-btn {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding: 16px;
  }

  .login-card {
    padding: 24px 16px 22px;
    border-radius: 22px;
  }

  .top-badge {
    font-size: 13px;
    padding: 9px 14px;
  }

  .avatar-circle {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }

  .login-card h1 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 13px;
    line-height: 1.6;
  }

  .input-group label,
  .remember-me,
  .forgot-link,
  .register-text,
  .love-note,
  .music-status {
    font-size: 13px;
  }

  .input-group input {
    height: 46px;
    font-size: 14px;
    border-radius: 12px;
  }

  .login-btn {
    height: 48px;
    font-size: 15px;
    border-radius: 14px;
  }

  .music-btn {
    width: 100%;
  }

  .form-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================
   REGISTER PAGE
========================= */

.register-page {
  position: relative;
  background-image:
    linear-gradient(rgba(255, 245, 250, 0.22), rgba(248, 240, 255, 0.22)),
    url("http://129.212.230.51/images/0f15919d-fc83-4a53-b527-4e8ea5319bb5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.register-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1.5px);
  z-index: 0;
  pointer-events: none;
}

.register-hearts span {
  color: rgba(255, 255, 255, 0.28);
}

.register-wrapper {
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.register-card {
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(120, 90, 160, 0.16);
  padding: 34px 30px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.register-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.58);
  color: #765088;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(210, 180, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.register-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.register-avatar-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 28px rgba(198, 161, 236, 0.16);
  font-size: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.register-card h1 {
  font-size: 31px;
  line-height: 1.25;
  color: #6b4e7f;
  margin-bottom: 10px;
}

.register-subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: #6f5a7d;
  margin-bottom: 26px;
}

.register-form {
  text-align: left;
}

.register-form .input-group {
  margin-bottom: 17px;
}

.register-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6f577d;
}

.register-form input,
.register-form select {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  outline: none;
  padding: 0 16px;
  font-size: 15px;
  color: #5f486d;
  background: rgba(255, 255, 255, 0.62);
  transition: all 0.25s ease;
  appearance: none;
}

.register-form select {
  cursor: pointer;
}

.register-form input:focus,
.register-form select:focus {
  border-color: rgba(200, 159, 240, 0.9);
  box-shadow: 0 0 0 4px rgba(207, 176, 246, 0.16);
  background: rgba(255, 255, 255, 0.75);
}

.register-note-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 20px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px dashed rgba(255, 255, 255, 0.55);
}

.register-note-box span {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.register-note-box p {
  font-size: 13px;
  line-height: 1.7;
  color: #7d668a;
}

.register-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200, 159, 240, 0.95), rgba(243, 168, 200, 0.95));
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(204, 155, 235, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(204, 155, 235, 0.28);
}

.login-back-text {
  margin-top: 20px;
  font-size: 14px;
  color: #6f5f79;
}

.login-back-text a {
  color: #a95fc8;
  font-weight: 700;
  text-decoration: none;
}

.login-back-text a:hover {
  text-decoration: underline;
}

.register-love-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  color: #7d6885;
  font-size: 14px;
  line-height: 1.75;
  border: 1px dashed rgba(255, 255, 255, 0.52);
}

/* Tablet */
@media (max-width: 768px) {
  .register-page {
    background-attachment: scroll;
  }

  .register-wrapper {
    padding: 22px 20px;
  }

  .register-card {
    max-width: 100%;
    padding: 28px 20px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.58);
  }

  .register-card h1 {
    font-size: 27px;
  }

  .register-subtitle {
    font-size: 14px;
  }

  .register-form input,
  .register-form select {
    height: 50px;
  }

  .register-btn {
    height: 50px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .register-page {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .register-page::before {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
  }

  .register-wrapper {
    padding: 14px;
    align-items: flex-start;
  }

  .register-card {
    width: 100%;
    padding: 20px 14px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 28px rgba(120, 90, 160, 0.10);
  }

  .register-badge {
    font-size: 13px;
    padding: 9px 14px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.34);
  }

  .register-avatar-circle {
    width: 72px;
    height: 72px;
    font-size: 30px;
    background: rgba(255, 255, 255, 0.28);
  }

  .register-card h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .register-subtitle {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .register-form .input-group {
    margin-bottom: 14px;
  }

  .register-subtitle,
  .register-note-box p,
  .login-back-text,
  .register-love-note,
  .register-form label {
    font-size: 13px;
  }

  .register-form input,
  .register-form select {
    height: 44px;
    font-size: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.38);
  }

  .register-note-box {
    margin: 6px 0 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.24);
  }

  .register-btn {
    height: 46px;
    font-size: 15px;
    border-radius: 14px;
  }

  .register-love-note {
    margin-top: 18px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 768px) {
  .sparkles .sparkle {
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.55),
      0 0 10px rgba(255, 228, 196, 0.3);
  }
}

@media (max-width: 480px) {
  .hearts .heart:nth-child(n+5),
  .petals .petal:nth-child(n+7),
  .sparkles .sparkle:nth-child(n+8) {
    display: none;
  }

  .hearts .heart,
  .petals .petal,
  .sparkles .sparkle {
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .words .word {
    font-size: 12px !important;
    text-shadow:
      0 0 6px rgba(255, 255, 255, 0.35),
      0 0 12px rgba(255, 210, 230, 0.16);
  }
}

@media (max-width: 480px) {
  .words .word:nth-child(n+6) {
    display: none;
  }

  .words .word {
    font-size: 11px !important;
    opacity: 0.6;
  }
}