:root {
    --heading-color: orangered;
    --subheading-color: #2cc197;
    --accent-color: #00a1e0;
    --primary: #3a86ff;
    --primary-dark: #2667cc;
    --secondary: #8338ec;
    --accent: var(--accent-color);
    --light: #f8f9fa;
    --dark: #0a1128;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(135deg, var(--secondary), var(--accent));
    --gradient-bg: linear-gradient(135deg, #0a1128, #1a2a52);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
a {
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition-fast);
}
/* Hero Section */
.login-hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10, 17, 40, 0.5), rgba(18, 26, 46, 0.5));
}

  .login-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/loginherobg.jpg')  center/cover no-repeat  !important;
    background-attachment: fixed;
    opacity: 0.8;
    filter: blur(7px);
    transform: scale(1.1);
    z-index: -1;
  }
.login-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1) 0%, rgba(10, 17, 40, 0.5) 50%);
  z-index: 0;
}

.login-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.login-hero-content-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-hero-content {
  max-width: 800px;
  width: 600px;
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(1px);
  animation: fadeIn 3s ease-in-out;
}

.login-hero-title {
  color: var(--heading-color);
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.login-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.login-hero-cta {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

/* Futuristic Login Animation */
.login-hero-animation-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.login-3d-animation {
  width: 100%;
  height: 500px;
  position: relative;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-hologram-container {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  margin: 0 auto;
  animation: rotateHologram 20s linear infinite;
}

@keyframes rotateHologram {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Cybernetic Brain */
.login-cyber-brain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 194, 168, 0.2), transparent 70%);
  box-shadow: 0 0 30px var(--login-hologram);
  z-index: 1;
}

.login-cyber-brain::before,
.login-cyber-brain::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 194, 168, 0.1);
  animation: pulseBrain 3s infinite alternate;
}

.login-cyber-brain::before {
  width: 100px;
  height: 100px;
}

.login-cyber-brain::after {
  width: 80px;
  height: 80px;
  animation-delay: 1s;
}

@keyframes pulseBrain {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.7;
  }
}

/* Neural Network */
.login-neural-network {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.login-neural-network::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 161, 224, 0.1) 70%);
  animation: pulseNetwork 4s infinite alternate;
}

@keyframes pulseNetwork {
  0% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

/* Digital Identity */
.login-digital-identity {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 0, 0.3);
  z-index: 0;
}

.login-digital-identity::before,
.login-digital-identity::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 107, 0, 0.2);
  animation: rotateIdentity 10s linear infinite;
}

.login-digital-identity::before {
  width: 180px;
  height: 180px;
  animation-direction: reverse;
}

.login-digital-identity::after {
  width: 120px;
  height: 120px;
}

@keyframes rotateIdentity {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Holographic Grid */
.login-hologram-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.login-grid-line {
  position: absolute;
  background: var(--login-grid-line);
  opacity: 0.5;
}

.login-grid-line-horizontal {
  height: 1px;
  width: 100%;
  left: 0;
}

.login-grid-line-vertical {
  width: 1px;
  height: 100%;
  top: 0;
}

/* Holographic Base */
.login-hologram-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--login-hologram);
  opacity: 0.7;
}

.login-hologram-platform {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  opacity: 0.3;
}

/* Central Login Icon */
.login-icon-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.login-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px var(--login-glow);
  animation: pulseLoginIcon 3s infinite;
  z-index: 2;
}

.login-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

/* Holographic Rings */
.login-hologram-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.login-hologram-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--secondary);
  opacity: 0.5;
  animation: pulseRing 3s infinite;
}

.login-hologram-ring:nth-child(1) {
  width: 140px;
  height: 140px;
  animation-delay: 0s;
}

.login-hologram-ring:nth-child(2) {
  width: 180px;
  height: 180px;
  animation-delay: 1s;
}

.login-hologram-ring:nth-child(3) {
  width: 220px;
  height: 220px;
  animation-delay: 2s;
}

/* Biometric Scan */
.login-biometric-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.login-biometric-scan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: scanVertical 3s ease-in-out infinite;
}

.login-biometric-scan::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--secondary), transparent);
  animation: scanHorizontal 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes scanVertical {
  0%,
  100% {
    top: 0;
    opacity: 0;
  }
  50% {
    top: 100%;
    opacity: 1;
  }
}

@keyframes scanHorizontal {
  0%,
  100% {
    left: 0;
    opacity: 0;
  }
  50% {
    left: 100%;
    opacity: 1;
  }
}

/* Floating Security Elements */
.login-floating-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.login-floating-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  cursor: pointer;
  animation: floatItem 5s infinite ease-in-out;
}

.login-floating-item:hover {
  transform: scale(1.1);
  background: rgba(0, 194, 168, 0.2);
  border-color: var(--secondary);
}

.login-floating-item[data-item="shield"] {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.login-floating-item[data-item="lock"] {
  top: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

.login-floating-item[data-item="fingerprint"] {
  bottom: 20%;
  right: 20%;
  animation-delay: 1s;
}

.login-floating-item[data-item="key"] {
  bottom: 20%;
  left: 20%;
  animation-delay: 2.5s;
}

.login-floating-icon {
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 5px;
}

.login-floating-label {
  font-size: 0.7rem;
  color: var(--light);
  font-weight: 600;
  text-align: center;
}

/* Data Streams */
.login-data-streams {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.login-data-stream {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  transform-origin: left center;
  opacity: 0.6;
}

.login-data-point {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--login-data-point);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--login-glow);
  animation: moveDataPoint 3s linear infinite;
}

/* Flying Items Animation */
.login-flying-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.login-flying-item {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: flyToLogin 2s forwards;
}

.login-flying-item i {
  font-size: 1.2rem;
  color: var(--light);
}

/* Login Form Section */
.login-form-section {
  background: linear-gradient(to bottom, var(--dark-alt), var(--dark));
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
  z-index: 1;
}

  .login-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/loginbg.gif')  center/cover no-repeat  !important;
    background-attachment: fixed;
    opacity: 0.8;
    filter: blur(7px);
    transform: scale(1.1);
    z-index: -1;
  }

.login-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.login-form-container {
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  width: 500px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.login-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 107, 0, 0.05), transparent 70%);
  z-index: 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.login-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
}

.login-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.login-input-icon {
  position: absolute;
  left: 15px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.login-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: var(--dark);
  color: var(--light);
  font-size: 1rem;
  transition: var(--transition);
}

.login-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--login-input-focus);
}

.login-input-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.login-input:focus ~ .login-input-scan-line {
  opacity: 1;
  animation: scanInput 2s linear infinite;
}

@keyframes scanInput {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

.login-password-toggle {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  z-index: 2;
}

.login-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.login-remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.login-forgot-password {
  color: var(--accent);
  font-weight: 600;
}

.login-forgot-password:hover {
  color: var(--primary);
  text-decoration: underline;
}

.login-form-message {
  min-height: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.login-form-message.error {
  color: var(--heading-color);
}

.login-form-message.success {
  color: var(--subheading-color);
}

.login-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.login-signup-link {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 20px;
  color: var(--light);
}

.login-signup-link a {
  font-weight: 600;
  color: var(--primary);
}

.login-signup-link a:hover {
  text-decoration: underline;
}

/* Form Side Animation */
.login-form-side-animation {
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  perspective: 1000px;
  opacity: 0.2;
}

/* DNA Helix Animation */
.login-dna-helix {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 50%;
  animation: rotateDNA 15s linear infinite;
}

@keyframes rotateDNA {
  0% {
    transform: translate(-50%, -50%) rotateY(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateY(360deg);
  }
}

.login-dna-strand {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}

.login-dna-strand::before,
.login-dna-strand::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.login-dna-strand::before {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 10px,
    var(--login-dna) 10px,
    var(--login-dna) 12px
  );
  transform: rotateY(0deg) translateX(-20px);
}

.login-dna-strand::after {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 10px,
    var(--login-dna) 10px,
    var(--login-dna) 12px
  );
  transform: rotateY(180deg) translateX(-20px);
}

/* Quantum Particles */
.login-quantum-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.login-quantum-particles::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--login-quantum), transparent 70%);
  animation: pulseQuantum 4s infinite alternate;
}

@keyframes pulseQuantum {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.7;
  }
}

/* Digital Circuit */
.login-digital-circuit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.login-digital-circuit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 98%, var(--login-circuit) 98%),
    linear-gradient(0deg, transparent 98%, var(--login-circuit) 98%);
  background-size: 20px 20px;
  animation: moveCircuit 10s linear infinite;
}

@keyframes moveCircuit {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 20px;
  }
}

/* Section Divider */
.login-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.login-divider-line {
  height: 2px;
  width: 100px;
  background: var(--gradient-1);
}

.login-divider-icon {
  margin: 0 15px;
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(255, 107, 0, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Why Login Section */
.login-why-section {
  padding: 120px 0;
  background:var(--dark) !important;
  position: relative;
}

.login-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.login-benefit-card {
  background: rgba(18, 26, 46, 0.7);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.login-benefit-icon {
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
  background: rgba(255, 107, 0, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.login-benefit-card:hover .login-benefit-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.login-benefit-card h3 {
  margin-bottom: 10px;
  color: var(--light);
  font-size: 1.4rem;
}

.login-benefit-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Security Tips Section */
.login-security-section {
  padding: 80px 0;
  background:var(--gradient-bg);
}

.login-security-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.login-security-tip {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(18, 26, 46, 0.7);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.login-security-tip:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.login-security-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.login-security-content h3 {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 5px;
  /* color: var(--light); */
}

.login-security-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */

/* Sign Up CTA Section */
.login-signup-section {
  padding: 80px 0;
  background: var(--gradient-bg) !important;
  position: relative;
}

.login-signup-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(18, 26, 46, 0.7);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.login-signup-content h2 {
  margin-bottom: 20px;
  color: var(--heading-color);
}

.login-signup-content p {
  margin-bottom: 30px;
}

.login-signup-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Footer */
.login-footer {
  padding: 30px 0;
  background: var(--dark-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.login-footer-links {
  display: flex;
  gap: 20px;
}

.login-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.login-footer-links a:hover {
  color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseLoginIcon {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px var(--login-glow);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--login-glow);
  }
}

@keyframes pulseRing {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes floatItem {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes moveDataPoint {
  0% {
    right: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    right: 100%;
    opacity: 0;
  }
}

@keyframes flyToLogin {
  0% {
    opacity: 0;
    transform: translate(var(--startX), var(--startY)) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(calc(var(--startX) * 0.5), calc(var(--startY) * 0.5)) scale(1);
  }
  90% {
    opacity: 1;
    transform: translate(0, 0) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .login-hero-title {
    font-size: 3rem;
  }

  .login-hero-container {
    flex-direction: column;
  }

  .login-hero-content-wrapper,
  .login-hero-animation-wrapper {
    width: 100%;
  }

  .login-3d-animation {
    height: 400px;
  }

  .login-form-wrapper {
    flex-direction: column;
  }

  .login-form-container {
    width: 100%;
    max-width: 500px;
  }

  .login-form-side-animation {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 992px) {
  .login-security-tip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .login-security-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .login-container {
    width: 95%;
  }

  .login-hero-section {
    padding: 60px 0;
    min-height: auto;
  }

  .login-hero-content {
    padding: 30px;
    width: 100%;
  }

  .login-hero-title {
    font-size: 2.5rem;
  }

  .login-hero-subtitle {
    font-size: 1.1rem;
  }

  .login-3d-animation {
    height: 350px;
  }

  .login-hologram-container {
    width: 250px;
    height: 250px;
  }

  .login-form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .login-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .login-footer-links {
    justify-content: center;
  }

  .login-hero-cta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .login-hero-title {
    font-size: 2rem;
  }

  .login-hero-subtitle {
    font-size: 1rem;
  }

  .login-3d-animation {
    height: 300px;
  }

  .login-hologram-container {
    width: 200px;
    height: 200px;
  }

  .login-form-container {
    padding: 20px;
  }

  .login-input {
    padding: 12px 12px 12px 40px;
  }

  .login-submit-btn {
    padding: 12px;
  }
}
