:root {
  --primary: #4361ee;
  --primary-light: #4895ef;
  --primary-soft: #e2eafc;
  --secondary: #f72585;
  --secondary-light: #ff9e00;
  --success: #06d6a0;
  --warning: #ffd166;
  --danger: #ef476f;
  --light-1: #ffffff;
  --light-2: #f8f9fa;
  --light-3: #f1f3f5;
  --light-4: #e9ecef;
  --dark-1: #212529;
  --dark-2: #495057;
  --dark-3: #6c757d;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #adb5bd;
  --border-light: #e9ecef;
  --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 30px 50px -20px rgba(67, 97, 238, 0.15);
  --gradient-primary: linear-gradient(135deg, #4361ee 0%, #4895ef 100%);
  --gradient-accent: linear-gradient(135deg, #f72585 0%, #ff9e00 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--light-2);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* Light Theme Background */
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(67, 97, 238, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(247, 37, 133, 0.03) 0%, transparent 30%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.01) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.wave-pattern {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* Main Container */
.login-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 20px;
  display: flex;
  background: var(--light-1);
  border-radius: 50px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  animation: containerFloat 0.8s ease;
}

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

/* Left Side - Hero Section */
.hero-section {
  flex: 1.2;
  background: var(--gradient-primary);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}

.brand-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 450px;
}

/* Stats Cards */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: auto;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

/* Right Side - Login Section */
.login-section {
  flex: 1;
  padding: 60px 50px;
  background: var(--light-1);
  display: flex;
  flex-direction: column;
}

/*.login-header {
  margin-bottom: 8px;
}*/

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.welcome-badge i {
  font-size: 18px;
}

.login-header h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-1);
  letter-spacing: -0.5px;
}

.login-header p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

/* Form Styles */
.login-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  color: var(--dark-2);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
}

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

.input-icon {
  position: absolute;
  left: 18px;
  color: var(--text-muted);
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 1;
}

.form-control {
  width: 100%;
  padding: 18px 18px 18px 54px;
  background: var(--light-2);
  border: 2px solid transparent;
  border-radius: 20px;
  color: var(--dark-1);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--light-1);
  box-shadow: 0 5px 20px rgba(67, 97, 238, 0.1);
}

.form-control:focus + .input-icon {
  color: var(--primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.password-toggle {
  position: absolute;
  right: 18px;
  left: auto;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary);
}

/* Error Message */
.error-message {
  margin-top: 10px;
  padding: 12px 16px;
  background: #fee;
  border-left: 4px solid var(--danger);
  border-radius: 12px;
  color: var(--danger);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Form Options */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -13px 0 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  border-radius: 5px;
}

.forgot-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.forgot-link:hover {
  gap: 8px;
  color: var(--secondary);
}

/* Login Button */
.btn-login {
  width: 100%;
  padding: 18px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.btn-login::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-login:hover::after {
  width: 300px;
  height: 300px;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
}

.btn-login:active {
  transform: translateY(0);
}

.btn-login:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Security Pin Link */
.security-section {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid var(--light-4);
}

.security-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  background: var(--light-2);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.security-link i {
  font-size: 18px;
  color: var(--primary);
}

.security-link:hover {
  background: var(--primary-soft);
  color: var(--primary);
  gap: 15px;
}

/* Success Message */
.success-message {
  padding: 16px 20px;
  background: #e8f7f0;
  border-left: 4px solid var(--success);
  border-radius: 16px;
  color: #0b6e4f;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: slideDown 0.4s ease;
}

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

/* Loading Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Testimonial Bubbles */
.testimonial-bubbles {
  position: absolute;
  bottom: 60px;
  left: 40px;
  right: 40px;
  display: flex;
  gap: 15px;
}

.bubble {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: bubbleFloat 3s ease infinite;
}

.bubble:nth-child(2) { animation-delay: 0.5s; }
.bubble:nth-child(3) { animation-delay: 1s; }

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

.bubble-avatar {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.bubble-text {
  color: white;
}

.bubble-text strong {
  font-weight: 600;
}

.bubble-text p {
  font-size: 12px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .login-wrapper {
    flex-direction: column;
    max-width: 500px;
  }
  
  .hero-section {
    padding: 40px 30px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .login-section {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .login-wrapper {
    margin: 10px;
    border-radius: 30px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .stats-container {
    gap: 10px;
  }
  
  .hero-stat {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .login-header h2 {
    font-size: 28px;
  }
  
  .testimonial-bubbles {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-login {
    padding: 16px;
  }
  
  .security-link {
    width: 100%;
    justify-content: center;
  }
}

/* Hover Effects */
.form-control:hover {
  background: var(--light-3);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-2);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}/* Blue Theme Animated Background */
:root {
  --blue-1: #4361ee;
  --blue-2: #3a56d4;
  --blue-3: #4895ef;
  --blue-4: #4cc9f0;
  --blue-soft: #e2eafc;
  --blue-dark: #2b3b4c;
}

body {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  position: relative;
  overflow-x: hidden;
}

/* Ocean Wave Background */
.ocean-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(67, 97, 238, 0.02) 0%, rgba(72, 149, 239, 0.05) 100%);
}

.wave {
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(67, 97, 238, 0.03);
  border-radius: 40%;
  animation: wave 20s linear infinite;
}

.wave1 {
  top: -50%;
  left: -50%;
  animation: wave 25s linear infinite;
  background: rgba(67, 97, 238, 0.02);
}

.wave2 {
  top: -30%;
  left: -30%;
  animation: wave 30s linear infinite reverse;
  background: rgba(72, 149, 239, 0.02);
}

.wave3 {
  top: -70%;
  left: -20%;
  animation: wave 35s linear infinite;
  background: rgba(76, 201, 240, 0.02);
}

@keyframes wave {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating Blue Orbs */
.blue-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #4361ee, #4895ef);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4895ef, #4cc9f0);
  bottom: -200px;
  left: -200px;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4cc9f0, #4361ee);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

/* Bubble Particles */
.bubbles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  animation: bubble 15s ease-in infinite;
}

@keyframes bubble {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Blue Grid Pattern */
.blue-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(67, 97, 238, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 97, 238, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

/* Blue Geometric Shapes */
.blue-shape {
  position: fixed;
  border: 2px solid rgba(67, 97, 238, 0.05);
  z-index: -1;
  pointer-events: none;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  border-radius: 30px;
  transform: rotate(45deg);
  animation: rotate 40s linear infinite;
  border-color: rgba(67, 97, 238, 0.05);
}

.shape-2 {
  bottom: 15%;
  right: 8%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border-color: rgba(72, 149, 239, 0.05);
  animation: pulse 5s ease-in-out infinite;
}

.shape-3 {
  top: 20%;
  right: 15%;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  border-color: rgba(76, 201, 240, 0.05);
  animation: floatShape 7s ease-in-out infinite;
}

@keyframes rotate {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

/* Blue Wave SVG */
.blue-wave {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

.blue-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Enhanced Login Container */
.login-wrapper {
  background: rgba(255, 255, 255, 0.8);
  /*backdrop-filter: blur(20px);*/
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(67, 97, 238, 0.1);
  box-shadow: 0 30px 60px -15px rgba(67, 97, 238, 0.2);
}

.welcome-badge {
  background: linear-gradient(135deg, #4361ee10, #4895ef10);
  border: 1px solid rgba(67, 97, 238, 0.2);
}

.form-control:focus {
  border-color: var(--blue-1);
  box-shadow: 0 5px 20px rgba(67, 97, 238, 0.15);
}

.btn-login {
  background: linear-gradient(135deg, #4361ee, #3a56d4, #4895ef);
  background-size: 200% 200%;
  animation: gradient 5s ease infinite;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .blue-orb {
    filter: blur(40px);
    opacity: 0.1;
  }
  
  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 250px; height: 250px; }
  .orb-3 { width: 200px; height: 200px; }
  
  .blue-shape { display: none; }
}.text-bg-light {
    color: #000 !important;
    background-color: transparent !important;
}

/* Compact Card Styles */
.login-wrapper {
    max-width: 950px; /* Reduced from 1300px */
    margin: 15px auto;
}

.login-section {
    padding: 35px 40px; /* Reduced from 60px 50px */
}

.login-header {
    margin-bottom: 5px; /* Reduced from 8px */
}

.welcome-badge {
    padding: 6px 14px; /* Reduced from 8px 16px */
    font-size: 13px; /* Reduced from 14px */
    margin-bottom: 8px; /* Reduced from 10px */
}

.welcome-badge i {
    font-size: 16px; /* Reduced from 18px */
}

.login-header h2 {
    font-size: 20px; /* Reduced from 22px */
    margin-bottom: 5px; /* Reduced from 10px */
}

.login-header p {
    font-size: 14px; /* Reduced from 16px */
    line-height: 1.4; /* Reduced from 1.5 */
}

/* Form Styles - More Compact */
.form-group {
    margin-bottom: 12px; /* Reduced from 16px */
}

.form-label {
    margin-bottom: 6px; /* Reduced from 10px */
    font-size: 13px; /* Reduced from 14px */
}

.form-control {
    padding: 12px 16px; /* Reduced from 18px 18px 18px 54px */
    font-size: 14px; /* Reduced from 15px */
    border-radius: 16px; /* Reduced from 20px */
}

.form-options {
    margin: 0 0 18px; /* Reduced from -13px 0 25px */
}

.forgot-link {
    font-size: 13px; /* Reduced from 14px */
}

/* Button - More Compact */
.btn-login {
    padding: 12px; /* Reduced from 18px */
    font-size: 15px; /* Reduced from 16px */
    border-radius: 16px; /* Reduced from 20px */
    gap: 8px; /* Reduced from 10px */
}

/* Security Section - More Compact */
.security-section {
    margin-top: 18px; /* Reduced from 25px */
    padding-top: 18px; /* Reduced from 25px */
}

.security-link {
    font-size: 14px; /* Reduced from 15px */
    padding: 10px 20px; /* Reduced from 12px 24px */
    gap: 8px; /* Reduced from 10px */
}

.security-link i {
    font-size: 16px; /* Reduced from 18px */
}

/* Alert Messages - More Compact */
.alert {
    padding: 10px 14px; /* Reduced */
    margin-bottom: 12px; /* Reduced */
    font-size: 13px; /* Reduced */
    border-radius: 12px; /* Reduced from 16px */
}

/* Hero Section - More Compact (if visible) */
.hero-section {
    padding: 40px 30px; /* Reduced from 60px 40px */
}

.brand {
    margin-bottom: 40px; /* Reduced from 60px */
    gap: 8px; /* Reduced from 12px */
}

.brand-icon {
    width: 40px; /* Reduced from 50px */
    height: 40px; /* Reduced from 50px */
    font-size: 22px; /* Reduced from 28px */
}

.brand-name {
    font-size: 24px; /* Reduced from 28px */
}

.hero-title {
    font-size: 32px; /* Reduced from 44px */
    margin-bottom: 12px; /* Reduced from 20px */
}

.hero-description {
    font-size: 15px; /* Reduced from 18px */
    margin-bottom: 30px; /* Reduced from 50px */
    line-height: 1.5; /* Reduced from 1.6 */
}

/* Stats Cards - More Compact */
.stats-container {
    gap: 12px; /* Reduced from 20px */
}

.hero-stat {
    padding: 15px; /* Reduced from 20px */
}

.stat-icon {
    width: 32px; /* Reduced from 40px */
    height: 32px; /* Reduced from 40px */
    font-size: 16px; /* Reduced from 20px */
    margin-bottom: 10px; /* Reduced from 15px */
}

.stat-number {
    font-size: 22px; /* Reduced from 28px */
    margin-bottom: 2px; /* Reduced from 5px */
}

.stat-label {
    font-size: 11px; /* Reduced from 13px */
}

/* Testimonial Bubbles - More Compact */
.testimonial-bubbles {
    bottom: 40px; /* Reduced from 60px */
    left: 30px; /* Reduced from 40px */
    right: 30px; /* Reduced from 40px */
    gap: 10px; /* Reduced from 15px */
}

.bubble {
    padding: 8px 16px; /* Reduced from 12px 20px */
    gap: 8px; /* Reduced from 12px */
}

.bubble-avatar {
    width: 28px; /* Reduced from 32px */
    height: 28px; /* Reduced from 32px */
    font-size: 14px; /* Added */
}

.bubble-text strong {
    font-size: 13px; /* Added */
}

.bubble-text p {
    font-size: 11px; /* Reduced from 12px */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .login-wrapper {
        max-width: 450px; /* Reduced from 500px */
    }
    
    .hero-section {
        padding: 30px 25px; /* Further reduced */
    }
    
    .login-section {
        padding: 30px 25px; /* Further reduced */
    }
}

@media (max-width: 768px) {
    .login-wrapper {
        margin: 8px; /* Reduced from 10px */
        border-radius: 24px; /* Reduced from 30px */
    }
    
    .login-section {
        padding: 25px 20px; /* Further reduced */
    }
    
    .hero-title {
        font-size: 26px; /* Reduced from 28px */
    }
    
    .hero-description {
        font-size: 14px; /* Reduced */
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px; /* Reduced */
    }
    
    .hero-stat {
        padding: 10px; /* Further reduced */
    }
    
    .stat-number {
        font-size: 18px; /* Reduced */
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 20px 15px; /* Minimal padding */
    }
    
    .login-header h2 {
        font-size: 18px; /* Reduced */
    }
    
    .btn-login {
        padding: 10px; /* Reduced */
        font-size: 14px; /* Reduced */
    }
    
    .security-link {
        width: 100%;
        justify-content: center;
        padding: 8px 16px; /* Reduced */
        font-size: 13px; /* Reduced */
    }
    
    .form-control {
        padding: 10px 14px; /* Reduced */
        font-size: 13px; /* Reduced */
    }
}.signup-section{
    text-align:center;
    margin-top:15px;
    font-size:14px;
}

.signup-link{
    color:#4361ee;
    font-weight:600;
    text-decoration:none;
}

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