.glass {
  background: rgba(24, 16, 19, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.animated-bg {
  position: relative;
  overflow-x: hidden;
}

.animated-bg::before {
  content: '';
  position: fixed;
  inset: -20%;
  z-index: 0;
  opacity: 0.35;
  background: linear-gradient(120deg, rgba(148, 65, 61, 0.35), rgba(24, 16, 19, 0.1), rgba(148, 65, 61, 0.25));
  background-size: 200% 200%;
  animation: gradient-drift 18s ease-in-out infinite;
  pointer-events: none;
  transform: translateZ(0);
}

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

/* White icons for date and time inputs */
input[type='date']::-webkit-calendar-picker-indicator,
input[type='time']::-webkit-calendar-picker-indicator,
input[type='datetime-local']::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}
