.bodyLogin {
  background: linear-gradient(135deg, #1a1206, #3d2c1e, #2c1810);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #c5c6c7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.bodyLogin::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Floating background elements */
.bodyLogin::after {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
  animation: floatBackground 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Floating circles */
.floating-circle {
  position: fixed;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.08);
  pointer-events: none;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.1);
  z-index: 0;
}

.floating-circle:nth-child(1) {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation: floatCircle1 15s ease-in-out infinite;
  background: radial-gradient(circle at center, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
}

.floating-circle:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 60%;
  left: 80%;
  animation: floatCircle2 12s ease-in-out infinite;
  background: radial-gradient(circle at center, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
}

.floating-circle:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 80%;
  left: 30%;
  animation: floatCircle3 18s ease-in-out infinite;
  background: radial-gradient(circle at center, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
}

/* Ensure login wrapper stays above background effects */
.login-wrapper {
  position: relative;
  z-index: 1;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
  100% { opacity: 0.5; transform: scale(1); }
}

@keyframes floatBackground {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-2%, -2%) rotate(1deg); }
  50% { transform: translate(0, 0) rotate(0deg); }
  75% { transform: translate(2%, 2%) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatCircle1 {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(0, 0) scale(1); }
  75% { transform: translate(-50px, 30px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatCircle2 {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-40px, 40px) scale(0.9); }
  50% { transform: translate(0, 0) scale(1); }
  75% { transform: translate(40px, -40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatCircle3 {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, 50px) scale(1.1); }
  50% { transform: translate(0, 0) scale(1); }
  75% { transform: translate(-30px, -50px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
} 