/* Login Page Styles */
body {
  background-color: #050505;
  font-family: "Rajdhani", sans-serif;
  overflow: hidden;
}

.login-box {
  background: rgba(16, 16, 16, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #333;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.input-field {
  background: #0a0a0a;
  border: 1px solid #333;
  color: #d4d4d4;
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
  outline: none;
}

.btn-glow {
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  transform: translateY(-1px);
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.3),
    transparent
  );
  animation: scan 4s linear infinite;
  top: 0;
  left: 0;
  pointer-events: none;
}

@keyframes scan {
  0% {
    top: -10%;
  }

  100% {
    top: 110%;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
