body {
  background-color: #fafbfc;
  overflow: hidden;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#auth {
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

#auth .row {
  height: 100%;
  margin: 0;
}

#auth .col-lg-5,
#auth .col-lg-7 {
  height: 100%;
  padding: 0;
}

#auth #auth-right {
  height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
}

#auth #auth-left {
  padding: 2rem 5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* Subtle Decorative Background */
#auth #auth-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(45, 73, 157, 0.1) 50%, transparent 100%);
}

#auth #auth-left::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(77, 171, 247, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#auth #auth-left .auth-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #1a1f36;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

#auth #auth-left .auth-subtitle {
  font-family: 'Inter', sans-serif;
  color: #6c757d;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}

#auth #auth-left .auth-logo img {
  height: 2.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#auth #auth-left .auth-logo:hover img {
  transform: scale(1.05);
}

.auth-logo {
  margin-bottom: 1rem;
  position: relative;
}

.auth-logo::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2d499d 0%, #4dabf7 100%);
  border-radius: 2px;
}

/* Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Ambient Glow Effect */
.slider-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(77, 171, 247, 0.15) 0%, transparent 60%);
  animation: ambientRotate 20s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes ambientRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual Slides */
.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
  z-index: 0;
}

.slider-slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Anagestock Particles Container */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  opacity: 0;
  animation: particleFloat var(--duration) linear infinite;
  transform: scale(var(--scale, 1));
}

.hexagon {
  position: relative;
  width: var(--size);
  height: calc(var(--size) * 0.866025); /* √3/2 for perfect regular hexagon */
  background: var(--color);
  border-radius: 2px;
  transform-origin: center;
  animation: hexagonRotate var(--rotate-duration) linear infinite;
}

.hexagon::before,
.hexagon::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  border-left: calc(var(--size) / 2) solid transparent;
  border-right: calc(var(--size) / 2) solid transparent;
  border-radius: 2px;
}

.hexagon::before {
  bottom: 100%;
  border-bottom: calc(var(--size) * 0.288675) solid var(--color); /* √3/6 for perfect equilateral triangle */
}

.hexagon::after {
  top: 100%;
  border-top: calc(var(--size) * 0.288675) solid var(--color); /* √3/6 for perfect equilateral triangle */
}

/* Particle Float Animation */
@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) scale(var(--scale, 1));
    opacity: 0;
  }
  10% {
    opacity: var(--opacity);
  }
  90% {
    opacity: var(--opacity);
  }
  100% {
    transform: translateY(-100px) translateX(var(--drift)) scale(var(--scale, 1));
    opacity: 0;
  }
}

/* Hexagon Rotation Animation */
@keyframes hexagonRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hexagon Pulse Animation */
@keyframes hexagonPulse {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
}

/* Connected Lines between particles */
.particle-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.15) 50%, 
    transparent 100%);
  transform-origin: left center;
  opacity: 0;
  animation: lineAppear 2s ease-in-out infinite;
  z-index: 0;
}

@keyframes lineAppear {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
}

/* Gradient Overlay - Enhanced Professional Look */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(165deg, rgba(45, 73, 157, 0.35) 0%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

/* Decorative Top Corner Accent */
.slider-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at top right, rgba(77, 171, 247, 0.2) 0%, transparent 70%);
    z-index: 1;
}

/* Decorative Bottom Accent */
.slider-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    z-index: 1;
}

/* Slide Content */
.slider-content {
  position: absolute;
  bottom: 140px;
  left: 0;
  right: 0;
  padding: 0 4rem;
  z-index: 4;
  text-align: center;
  color: #ffffff;
}

/* Decorative Line Above Content */
.slider-content::before {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #4dabf7 50%, transparent 100%);
  margin: 0 auto 24px;
  opacity: 0;
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.slider-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 
    0 2px 24px rgba(0, 0, 0, 0.5),
    0 4px 48px rgba(45, 73, 157, 0.3);
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0 20px;
}

.slider-tagline::before,
.slider-tagline::after {
  content: '"';
  position: absolute;
  font-size: 2rem;
  color: rgba(77, 171, 247, 0.4);
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 1;
}

.slider-tagline::before {
  left: -10px;
  top: -8px;
}

.slider-tagline::after {
  content: '"';
  right: -10px;
  bottom: -8px;
}

/* Navigation Arrows */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  z-index: 5;
  pointer-events: none;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff;
  font-size: 1.5rem;
  padding: 0;
  margin: 0;
  pointer-events: auto;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.slider-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 171, 247, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-arrow i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.slider-arrow-prev {
  left: 0;
}

.slider-arrow-next {
  right: 0;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(77, 171, 247, 0.5);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    0 8px 28px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(77, 171, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.slider-arrow:hover::before {
  opacity: 1;
}

.slider-arrow:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-arrow:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

/* Dot Indicators */
.slider-dots {
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 4;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  position: relative;
}

.slider-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(77, 171, 247, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

.slider-dot:hover::before {
  opacity: 1;
}

.slider-dot.active {
  background: linear-gradient(135deg, #4dabf7 0%, #2d85d4 100%);
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(77, 171, 247, 0.4);
}

.slider-dot.active::before {
  display: none;
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 4;
  overflow: hidden;
}

.slider-progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(77, 171, 247, 0.3) 50%, 
    transparent 100%);
  animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.slider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #2d499d 0%, #4dabf7 100%);
  width: 0%;
  transition: width 100ms linear;
  position: relative;
  box-shadow: 0 0 10px rgba(77, 171, 247, 0.5);
}

.slider-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Geometric Shapes */
.slider-container::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(77, 171, 247, 0.08) 0%, transparent 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: floatShape 15s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Additional Decorative Circle */
.slider-wrapper::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(77, 171, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Enhanced Form Styling */
#auth-left form {
    margin-top: 2.5rem;
    height: -webkit-fill-available;
}

#auth-left .form-group {
  margin-bottom: 1.75rem;
}

#auth-left .form-control {
  font-family: 'Inter', sans-serif;
  height: 52px;
  padding: 0.875rem 1rem 0.875rem 3.25rem;
  font-size: 0.95rem;
  border: 1.5px solid #e1e8ed;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1a1f36;
  font-weight: 400;
}

#auth-left .form-control::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

#auth-left .form-control:focus {
  border-color: #4dabf7;
  box-shadow: 0 0 0 4px rgba(77, 171, 247, 0.1);
  background: #ffffff;
  outline: none;
}

#auth-left .form-control:hover:not(:focus) {
  border-color: #cbd5e0;
}

#auth-left .form-control-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
  font-size: 1.15rem;
  transition: color 0.3s ease;
  pointer-events: none;
  line-height: 1;
}

#auth-left .form-control-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#auth-left .form-group:focus-within .form-control-icon {
  color: #4dabf7;
}

/* Checkbox Styling */
#auth-left .form-check {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

#auth-left .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}

#auth-left .form-check-input:checked {
  background-color: #2d499d;
  border-color: #2d499d;
  box-shadow: 0 2px 8px rgba(45, 73, 157, 0.25);
}

#auth-left .form-check-input:focus {
  border-color: #4dabf7;
  box-shadow: 0 0 0 4px rgba(77, 171, 247, 0.1);
}

#auth-left .form-check-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #4a5568;
  cursor: pointer;
  user-select: none;
  margin-left: 0.25rem;
}

/* Enhanced Button Styling */
#auth-left .btn-primary {
  font-family: 'Poppins', sans-serif;
  height: 54px;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d499d 0%, #4dabf7 100%);
  box-shadow: 
    0 4px 12px rgba(45, 73, 157, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

#auth-left .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3558b3 0%, #5bb9ff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#auth-left .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(45, 73, 157, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#auth-left .btn-primary:hover::before {
  opacity: 1;
}

#auth-left .btn-primary:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(45, 73, 157, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#auth-left .btn-primary span,
#auth-left .btn-primary input[type="submit"] {
  position: relative;
  z-index: 1;
}

/* Alert Styling */
#auth-left .alert {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: none;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#auth-left .alert-danger {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    color: #c53030;
    border-left: 4px solid #e53e3e;
    position: absolute;
    top: 1dvh;
    right: 0dvw;
    font-size: 12px;
    /* scale: 0.8; */
}

#auth-left .alert-danger strong {
  font-weight: 600;
}

/* Subtle Animation for Form Elements */
#auth-left .form-group {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

#auth-left .form-group:nth-child(1) {
  animation-delay: 0.1s;
}

#auth-left .form-group:nth-child(2) {
  animation-delay: 0.2s;
}

#auth-left .form-check {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

#auth-left .btn-primary {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

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

/* Dark Theme Support for Left Side */
body.theme-dark #auth #auth-left {
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
}

body.theme-dark #auth #auth-left::after {
  background: radial-gradient(circle, rgba(77, 171, 247, 0.05) 0%, transparent 70%);
}

body.theme-dark #auth #auth-left .auth-title {
  color: #e2e8f0;
}

body.theme-dark #auth #auth-left .auth-subtitle {
  color: #a0aec0;
}

body.theme-dark #auth-left .form-control {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

body.theme-dark #auth-left .form-control::placeholder {
  color: #718096;
}

body.theme-dark #auth-left .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #4dabf7;
}

body.theme-dark #auth-left .form-control:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.15);
}

body.theme-dark #auth-left .form-check-input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

body.theme-dark #auth-left .form-check-label {
  color: #cbd5e0;
}

body.theme-dark #auth-left .alert-danger {
  background: linear-gradient(135deg, rgba(197, 48, 48, 0.1) 0%, rgba(197, 48, 48, 0.05) 100%);
  color: #fc8181;
  border-left-color: #f56565;
}

body.theme-dark {
  background-color: #0f1419;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .slider-heading {
    font-size: 3rem;
  }
  
  .slider-tagline {
    font-size: 1.1rem;
  }
  
  .slider-content {
    padding: 0 3rem;
  }
  
  .slider-controls {
    padding: 0 2rem;
  }
  
  .slider-arrow {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  #auth #auth-left {
    padding: 3rem 2.5rem;
  }
  
  #auth #auth-left .auth-title {
    font-size: 2.25rem;
  }
  
  .auth-logo {
    margin-bottom: 2rem;
  }
  
#auth-left form {
    margin-top: 1.5rem;
    height: -webkit-fill-available;
    overflow-y: hidden !important;
}

  #auth-left .form-group {
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  #auth #auth-left {
    padding: 2.5rem 2rem;
  }
  
  #auth #auth-left .auth-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  #auth #auth-left .auth-subtitle {
    font-size: 0.95rem;
  }
  
  .auth-logo {
    margin-bottom: 1.5rem;
  }
  
  .auth-logo::after {
    bottom: -12px;
    width: 50px;
    height: 2px;
  }
  
  #auth-left form {
    margin-top: 1.25rem;
  }
  
  #auth-left .form-control,
  #auth-left .btn-primary {
    height: 48px;
  }
  
  #auth-left .form-check {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  
  #auth-left .btn-primary {
    margin-top: 0.25rem;
  }
}

@media screen and (max-width: 576px) {
  #auth #auth-left {
    padding: 2rem 1.5rem;
  }
  
  #auth #auth-left .auth-title {
    font-size: 1.75rem;
  }
  
  #auth #auth-left .auth-subtitle {
    font-size: 0.9rem;
  }
  
  .auth-logo {
    margin-bottom: 1.25rem;
  }
  
  #auth-left form {
    margin-top: 1rem;
  }
  
  #auth-left .form-control {
    padding-left: 2.75rem;
    font-size: 0.9rem;
  }
  
  #auth-left .form-control-icon {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  #auth-left .form-check-label {
    font-size: 0.85rem;
  }
  
  #auth-left .btn-primary {
    font-size: 0.95rem;
  }
}

body.theme-dark #auth #auth-right {
  background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
}

body.theme-dark .slider-overlay {
  background: 
    linear-gradient(165deg, rgba(45, 73, 157, 0.45) 0%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Anagestock About Button */
.anagestock-about-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2d499d 0%, #4dabf7 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(45, 73, 157, 0.35);
  animation: anagestockPulse 3s ease-in-out infinite;
}

.anagestock-about-btn:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 12px 32px rgba(45, 73, 157, 0.45);
  animation: none;
}

.anagestock-about-btn::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #3558b3 0%, #5bb9ff 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.anagestock-about-btn:hover::before {
  opacity: 1;
}

.anagestock-about-btn i {
  font-size: 1.75rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.anagestock-about-btn:hover i {
  transform: rotate(-15deg);
}

@keyframes anagestockPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(45, 73, 157, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(45, 73, 157, 0.4);
  }
}

/* About Modal Overlay */
.about-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.about-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* About Modal Container */
.about-modal {
  background: #ffffff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Custom scrollbar for modal */
.about-modal::-webkit-scrollbar {
  width: 8px;
}

.about-modal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0 20px 20px 0;
}

.about-modal::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #2d499d 0%, #4dabf7 100%);
  border-radius: 4px;
}

.about-modal::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #3558b3 0%, #5bb9ff 100%);
}

.about-modal-overlay.active .about-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Modal Close Button */
.about-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1;
}

.about-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.about-modal-close i {
  font-size: 1rem;
  color: #333;
  scale: 1.5;
}

/* Modal Header */
.about-modal-header {
  text-align: center;
  padding: 20px 20px 32px;
  background: linear-gradient(135deg, #2d499d 0%, #4dabf7 100%);
  border-radius:  0px;
  position: relative;
}

.about-logo-hexagon {
  width: 0px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.95);
  /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-logo-hexagon i {
  font-size: 3rem;
  background: linear-gradient(135deg, #2d499d 0%, #4dabf7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-modal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.about-modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Modal Body */
.about-modal-body {
  padding: 32px 40px 40px;
}

.about-section {
  margin-bottom: 28px;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d499d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 73, 157, 0.2) 0%, transparent 100%);
}

.about-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Contact Info */
.about-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #444;
  transition: color 0.2s ease;
}

.about-contact-item i {
  width: 20px;
  text-align: center;
  color: #2d499d;
  font-size: 1rem;
}

.about-contact-item a {
  color: #2d499d;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.about-contact-item a:hover {
  color: #4dabf7;
}

.about-contact-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #4dabf7;
  transition: width 0.3s ease;
}

.about-contact-item a:hover::after {
  width: 100%;
}

/* Team Credits */
.about-team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.about-team-member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(45, 73, 157, 0.04);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.about-team-member:hover {
  background: rgba(45, 73, 157, 0.08);
  transform: translateX(4px);
}

.about-team-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d499d 0%, #4dabf7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-team-info {
  flex: 1;
}

.about-team-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 2px;
}

.about-team-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}

/* Social Links */
.about-social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 73, 157, 0.1);
}

.about-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(45, 73, 157, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d499d;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-social-link:hover {
  background: linear-gradient(135deg, #2d499d 0%, #4dabf7 100%);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(45, 73, 157, 0.25);
}

/* Footer */
.about-modal-footer {
  padding: 20px 40px;
  background: rgba(45, 73, 157, 0.03);
  border-radius: 0 0 20px 20px;
  text-align: center;
}

.about-version {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

/* Dark Theme Support */
body.theme-dark .about-modal {
  background: #1e1e1e;
  color: #e0e0e0;
}

body.theme-dark .about-modal-close {
  background: rgba(255, 255, 255, 0.1);
}

body.theme-dark .about-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

body.theme-dark .about-modal-close i {
  color: #e0e0e0;
}

body.theme-dark .about-description {
  color: #b0b0b0;
}

body.theme-dark .about-contact-item {
  color: #c0c0c0;
}

body.theme-dark .about-team-member {
  background: rgba(255, 255, 255, 0.05);
}

body.theme-dark .about-team-member:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.theme-dark .about-team-name {
  color: #e0e0e0;
}

body.theme-dark .about-team-role {
  color: #999;
}

body.theme-dark .about-social-link {
  background: rgba(255, 255, 255, 0.08);
  color: #4dabf7;
}

body.theme-dark .about-modal-footer {
  background: rgba(255, 255, 255, 0.03);
}

/* Responsive Styles */
@media screen and (max-width: 767px) {
  .anagestock-about-btn {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }
  
  .anagestock-about-btn i {
    font-size: 1.5rem;
  }
  
  .about-modal {
    border-radius: 16px;
    max-width: 100%;
  }
  
  .about-modal-header {
    padding: 36px 24px 24px;
    border-radius: 16px 16px 0 0;
  }
  
  .about-logo-hexagon {
    width: 80px;
    height: 80px;
  }
  
  .about-logo-hexagon i {
    font-size: 2.5rem;
  }
  
  .about-modal-title {
    font-size: 1.5rem;
  }
  
  .about-modal-body {
    padding: 24px;
  }
  
  .about-modal-footer {
    padding: 16px 24px;
    border-radius: 0 0 16px 16px;
  }
  
  .about-social-links {
    gap: 12px;
  }
  
  .about-social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Responsive - Disable particles on small screens for performance */
@media screen and (max-width: 991px) {
  .particles-container {
    display: none;
  }
  
  .anagestock-about-btn {
    display: none;
  }
}