* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('images/door.jpeg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* 🎇 Floating Kandils (Lanterns) */
.kandil {
  position: absolute;
  /* top: 50px; */
  top: 6px;
  /* width: 120px; */
  width: 150px;
  animation: floatKandil 6s ease-in-out infinite alternate,
             glowKandil 2s ease-in-out infinite alternate;
  z-index: 5;
  filter: drop-shadow(0 0 12px rgba(255, 180, 0, 0.8));
}

/* Left and Right Positions */
.kandil.left-kandil {
  /* left: 32%; */
  left: 21%;
  transform: translateX(-50%);
}
.kandil.right-kandil {
  left: 68%;
  transform: translateX(-50%);
}

/* Floating Animation */
@keyframes floatKandil {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(3deg); }
  100% { transform: translateY(-10px) rotate(-3deg); }
}

/* Gentle glowing effect */
@keyframes glowKandil {
  0% { filter: drop-shadow(0 0 6px rgba(255, 200, 0, 0.6)); }
  100% { filter: drop-shadow(0 0 18px rgba(255, 200, 0, 1)); }
}

/* 🪔 Ground Pantiyan (Diyas) */
.pantiya {
  position: absolute;
  bottom: 10px;
  width: 60px;
  animation: flicker 1.5s infinite alternate;
  z-index: 3;
}

.left1 { left: 20%; }
.right1 { right: 20%; }

@keyframes flicker {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.9; transform: scale(1); }
}

/* 🪶 Registration Form */
.container {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 400px;
  text-align: center;
  z-index: 10;
  position: relative;
}

h2 {
  color: #e67e22;
  margin-bottom: 30px;
  font-weight: 700;
}

label {
  display: block;
  margin-bottom: 6px;
  color: #555;
  font-weight: 500;
  text-align: left;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  width: 100%;
  padding: 14px;
  background-color: #f39c12;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #d35400;
}
