/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BACKGROUND ANIMATION */
body {
  background: linear-gradient(120deg, #0f0c29, #302b63, #24243e);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.background-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: moveGlow 15s linear infinite;
  z-index: 0;
}

@keyframes moveGlow {
  0% { top: 10%; left: 20%; }
  50% { top: 70%; left: 80%; }
  100% { top: 10%; left: 20%; }
}

/* WIDGET */
.booking-widget {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulseBorder 6s ease-in-out infinite;
}

@keyframes pulseBorder {
  0% { border-color: #ff0066; }
  50% { border-color: #00f0ff; }
  100% { border-color: #ff0066; }
}

.booking-header {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3s steps(30, end) infinite;
  border-right: 2px solid #fff;
  width: 0;
}

@keyframes typing {
  0% { width: 0; }
  50% { width: 100%; }
  100% { width: 0; }
}

.booking-form .reg-input {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  gap: 12px;
  margin-bottom: 16px;
  border: 2px solid transparent;
  transition: border 0.4s;
}

.booking-form .reg-input:hover {
  border-color: #00f0ff;
}

.booking-form .reg-input img {
  width: 32px;
  height: auto;
  filter: drop-shadow(0 0 4px #00f0ff);
}

.booking-form .reg-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #00ffe1;
  font-weight: 600;
  font-size: 16px;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.no-reg-link {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 16px;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s;
}

.no-reg-link:hover {
  color: #00f0ff;
}

.cta-button {
  background: linear-gradient(90deg, #ff0080, #7928ca);
  color: white;
  padding: 14px 20px;
  width: 100%;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px #ff00cc60;
  transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
  transform: scale(1.03);
  background: linear-gradient(90deg, #00f0ff, #0078d7);
  box-shadow: 0 0 20px #00f0ff90;
}

/* Responsive */
@media (max-width: 480px) {
  .booking-widget {
    padding: 20px;
  }

  .booking-form .reg-input input {
    font-size: 14px;
  }

  .cta-button {
    font-size: 15px;
  }
}
