.elegant-glass-bg {
  background-image: url('../images/e2m_back_dashboard.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.elegant-glass-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.elegant-glass-card {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.elegant-glass-header {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px 24px 0 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.elegant-glass-input {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
}

.elegant-glass-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.elegant-glass-input:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.elegant-glass-input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.elegant-glass-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.elegant-glass-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.elegant-glass-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.elegant-glass-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.elegant-glass-button:hover::before {
  left: 100%;
}

.elegant-glass-button:active {
  transform: translateY(0);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.elegant-glass-file-input {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.elegant-glass-file-input:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 158, 27, 0.5);
  transform: translateY(-1px);
}

.step-indicator {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step-active {
  color: white;
  transform: scale(1.1);
  box-shadow:
    0 6px 20px rgba(233, 225, 216, 0.4),
    inset 0 1px 0 rgba(146, 145, 145, 0.3);
}

.step-completed {
  background: linear-gradient(135deg, #6CC24A 0%, #4ade80 100%);
  color: white;
  box-shadow:
    0 4px 15px rgba(108, 194, 74, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step-inactive {
  background: rgba(255, 255, 255, 0.2);
  color: #6b7280;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.step-line {
  background: linear-gradient(90deg,
      rgba(255, 158, 27, 0.3) 0%,
      rgba(108, 194, 74, 0.3) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.step-line.completed {
  background: linear-gradient(90deg, #FF9E1B 0%, #6CC24A 100%);
  box-shadow: 0 2px 10px rgba(255, 158, 27, 0.3);
}

/* Animated Background Elements */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

.bg-orb:nth-child(1) {
  top: 20%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 70%);
  animation-delay: 0s;
}

.bg-orb:nth-child(2) {
  bottom: 20%;
  right: 20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 70%);
  animation-delay: 2s;
}

.bg-orb:nth-child(3) {
  top: 60%;
  left: 60%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 70%);
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.liquid-glass-bg {
  background: linear-gradient(135deg,
      rgba(255, 158, 27, 0.1) 0%,
      rgba(108, 194, 74, 0.1) 50%,
      rgba(255, 158, 27, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.liquid-glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.liquid-glass-header {
  background: linear-gradient(135deg,
      rgba(255, 158, 27, 0.9) 0%,
      rgba(108, 194, 74, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px 20px 0 0;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.liquid-glass-input {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.liquid-glass-input:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 158, 27, 0.4);
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.liquid-glass-input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(108, 194, 74, 0.6);
  outline: none;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(108, 194, 74, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.liquid-glass-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.liquid-glass-file-input {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.liquid-glass-file-input:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 158, 27, 0.5);
  transform: translateY(-1px);
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-y: auto;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
