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

:root {
  --primary: #667eea;
  --secondary: #764ba2;
  --accent: #f093fb;
  --text: #2d3748;
  --text-light: #718096;
  --card: rgba(255, 255, 255, 0.95);
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
}

body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--text);
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.dark {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #f7fafc;
  --text: #f7fafc;
  --text-light: #cbd5e0;
  --card: rgba(45, 55, 72, 0.95);
}

/* Fixed Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-logo img {
  height: 50px;
  border-radius: 12px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  /* Light Theme Colors Only */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  --secondary-50: #f0f9ff;
  --secondary-100: #e0f2fe;
  --secondary-200: #bae6fd;
  --secondary-300: #7dd3fc;
  --secondary-400: #38bdf8;
  --secondary-500: #0ea5e9;
  --secondary-600: #0284c7;
  --secondary-700: #0369a1;
  --secondary-800: #075985;
  --secondary-900: #0c4a6e;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --black: #000000;

  /* Semantic Colors */
  --background: var(--white);
  --surface: var(--gray-50);
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --border: var(--gray-200);
  --accent: var(--primary-600);
  --accent-hover: var(--primary-700);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Spacing */
  --container-padding: 2rem;
  --section-padding: 5rem 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
}

/* Header Logo Styling */
.logo {
  width: 120px;
  height: 65px;
  transition: all 0.3s ease;
  /* Fallback if image doesn't load */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-600);
}

.logo:hover {
  transform: scale(1.05);
  border-color: var(--primary-400);
}

/* If logo image fails to load, show fallback */
.logo::before {
  content: 'JJ';
  font-size: 16px;
  font-weight: 800;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:not([src]), .logo[src=""], .logo[src*="placeholder"] {
  background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
  color: white;
}

.logo:not([src])::before, .logo[src=""]::before, .logo[src*="placeholder"]::before {
  opacity: 1;
}



.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

#theme-toggle {
  color: #fff;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-600), var(--secondary-500));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background: var(--surface);
  color: var(--accent);
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;

}

.nav-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Fixed Main Content */
main {
  padding-top: 100px;
  padding-bottom: 120px;
  min-height: calc(100vh - 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Fixed Hero Section */
.hero {
  text-align: center;
  max-width: 700px;
  width: 90%;
  padding: 50px 40px;
  background: var(--card);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.box-sign {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}

.box-sign:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
  font-size: 1.5rem;


.theme-toggle:hover {
  color: var(--accent);
  background: var(--surface);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;

  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
  border: none;
  font-size: 0.9rem;
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-500));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


body {
    max-width: 100vw;
    height: 100vh;
    background-image: url("./assets/login-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
}
.navbar{
    max-height:100px;
    background-color: pink;
    width:100%;
    position: fixed;
    top:0;
    display:flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #e0f0ff, #c8d9ff, #e0f0ff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
}

#logo{
    max-height:80px;
    width:auto;
    margin-left:3.5rem;
}

.navbar-links{
    margin-right:4rem;
    display:flex;
    align-items: center;
    gap:1rem;
}

.navbar-links a{
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight:500;
    font-size: 1.05rem;
    color: #003366; 
    background: rgba(255, 255, 255, 0.3);
    border: 1.5px solid #66b2ff; 
    border-radius: 8px; 
    padding: 6px 14px;
   
}
.navbar-links a:hover {
    background: linear-gradient(135deg, #6cb6ff, #3d55b4, #62e6ff);
    color: white;
    box-shadow: 0 4px 12px rgba(61, 85, 180, 0.3);
    transform: translateY(-2px); 
}


.sign-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    min-width: 35vw;
    height: 80vh;
    border: 3px solid rgba(22, 50, 160, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    right: 10vw;
    top: 12vh;
    box-shadow: 5px 5px 10px rgb(115, 115, 255);
    padding-top: 20px;
}

.sign-section-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    min-width: 35vw;
    height: 80vh;
    border: 3px solid rgba(22, 50, 160, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    visibility: hidden;
    box-shadow: 5px 5px 10px rgb(115, 115, 255);
    right: 10vw;
    top: 10vh;
    padding-top: 10vh;
}

.box-sign {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
}

.fa-instagram:hover {
    color: red
}

.fa-linkedin:hover {
    color: rgb(1, 1, 156)
}

.fa-github:hover {
    color: black;
}

/* Fixed About Section */
#about-section {
  text-align: center;
  max-width: 700px;
  width: 90%;
  padding: 40px 30px;
  background: var(--card);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

#about-section h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}

#about-section p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

/* Fixed Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(102, 126, 234, 0.95);
  backdrop-filter: blur(20px);
  color: #fff;
  padding: 20px 0;
  text-align: center;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-social a {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  opacity: 1;
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.footer-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Fixed Mobile Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    height: 70px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(102, 126, 234, 0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    border-radius: 0 0 15px 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    width: 95%;
    padding: 30px 20px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  #about-section {
    width: 95%;
    padding: 30px 20px;
    margin: 0 auto;
  }

  main {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .footer {
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .box-sign {
    padding: 14px 30px;
    font-size: 16px;
  }

  .hero, #about-section {
    padding: 25px 15px;
  }
}

/* Remove broken animations temporarily */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

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

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

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  
  .footer-links {
    max-width: 25vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    margin: 0 auto;
}

.input-group input {
    all: unset;
    width: 250px;
    height: 40px;
    border: 1px solid blue;
    border-radius: 5px;
    backdrop-filter: blur(500px);
    padding-left: 10px;
}

.input-group input::placeholder {
    font-size: 12px;
}

.input-group label {
    position: absolute;
    left: 40px;
    top: -12px;
    background-color: #62b9fc;
    padding: 0px 10px 0 10px;
    font-size: 13px;
    border-radius: 5px;
    font-weight: 500;
}

.fa-solid {
    font-size: 20px;
}

.sign-in-btn,
.sign-up-btn,
.guestLogin {
    all: unset;
    margin: 0 auto;
    border: 1px solid blue;
    padding: 5px 30px 5px 30px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.1s ease-in-out;
}

.sign-up-btn:hover,
.fa-google:hover,
.sign-in-btn:hover,
.guestLogin:hover {
    background-color: #5bb8ff;
    transform: scale(1.1);
}

.signy {
    max-width: 30vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
}

.sign-section h2,
.sign-section-2 h2 {
    margin: 0 auto;
}

.links,
.links2 {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

.links button,
.links2 button {
    all: unset;
    cursor: pointer;
}

.links button:hover,
.links2 button:hover {
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .logo {
        left: 32vw;
    }
    .sign-section,
    .sign-section-2 {
        max-width: 55vw;
        height: 75vh;
        left: 27vh;
        top: 20vh;
        margin-top: 10px;
    }
    .box-sign {
        max-width: 35vw;
    }
    .signy {
        max-width: 40vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }
}

 feat/CHATBOT
@media (max-width: 655px) {
  .hero {
  padding: 12px 2px 10px 2px;
  max-width: 100vw;
  padding: 48px 16px 32px 16px;
  margin-bottom: 48px;
}

.box-sign {
  font-size: 16px;
  padding: 10px 12px;
  max-width: 60vw;
  left: 0px;
  margin: 0 10px;
}

.select-role-text {
  text-align: center;
  margin-top: 20px;
}

.select-role-text h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: #030303;
}

body.dark-mode {
  background: linear-gradient(120deg, #1c1c1e 0%, #2c2c2e 100%);
  color: #f1f1f1;
}

body.dark-mode .navbar {
  background: rgba(28, 28, 30, 0.95);
  color: #fff;
}

body.dark-mode .nav-links a {
  color: #f1f1f1;
}

body.dark-mode .nav-links a:hover {
  color: #ffd700;
}

body.dark-mode .hero {
  background: rgba(44, 44, 46, 0.95);
  color: #f1f1f1;
}

body.dark-mode .hero h1 {
  color: #5bb8ff;
}

body.dark-mode .box-sign {
  background: linear-gradient(90deg, #444 60%, #777 100%);
}

body.dark-mode .footer {
  background: #1c1c1e;
  color: #f1f1f1;
}

.dark-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  margin-left: 16px;
}

main {
  padding: 32px 16px;
}

section {
  padding: 16px;
  margin-bottom: 32px;
}

#loader p {
  font-size: 14px;
  color: #666;
  margin: 20px 0;
}

#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #5bb8ff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#chatbot {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-height: 400px;
  background-color: #f7f9fc;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  z-index: 999;
}

#chatbot-header {
  background-color: #3d55b4;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

#chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

#chatbot-input-area {
  display: flex;
  border-top: 1px solid #ccc;
  padding: 10px;
  background-color: #fff;
}

#chatbot-input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

#chatbot-send {
  background-color: #5bb8ff;
  color: white;
  border: none;
  padding: 8px 12px;
  margin-left: 8px;
  border-radius: 6px;
  cursor: pointer;
}
}

@media (max-width: 360px) {
  .logo {
    left: 2vw;
  }

  .box-sign {
    max-width: 10vw;
    left: 0px;
    margin: 0 10px;
  }

  .signy {
    width: 70vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
  }

  .input-group input {
    all: unset;
    width: 200px;
    height: 40px;
    border: 1px solid blue;
    border-radius: 5px;
    backdrop-filter: blur(500px);
    padding-left: 10px;
  }
}

@media (max-width: 300px) {
  .logo {
    left: -3vw;
  }

  .sign-section,
  .sign-section-2 {
    max-width: 100vw;
    height: 75vh;
    left: 3vh;
    top: 23vh;
    right: 1vh;
  }

  .box-sign {
    max-width: 10vw;
    left: 0px;
    margin: 0 20px;
  }

  .signy {
    max-width: 70vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
  }

  .input-group input {
    width: 170px;
    height: 40px;
    border: 1px solid blue;
    border-radius: 5px;
    backdrop-filter: blur(500px);
    padding-left: 10px;
  }

  body {
    max-width: 100vw;
    height: 150vh;
    background-image: url("./assets/login-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
  }
}
@media (max-width: 655px) {
    .logo {
        left: 20vw;
    }
    .sign-section,
    .sign-section-2 {
        max-width: 85vw;
        height: 75vh;
        left: 10vh;
        top: 20vh;
        margin-top: 10px;
    }
    .box-sign {
        max-width: 65vw;
    }
    .signy {
        max-width: 50vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }
    .links,
    .links2 {
        gap: 2px;
    }
}

@media (max-width: 430px) {
    .logo {
        left: 8vw;
    }
    .sign-section,
    .sign-section-2 {
        max-width: 85vw;
        height: 75vh;
        left: 3vh;
        top: 20vh;
        right: 1vh;
    }
    .box-sign {
        max-width: 60vw;
        left: 0px;
        margin: 0 10px;
    }
    .signy {
        max-width: 70vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }
    .links,
    .links2 {
        gap: 3px;
    }
}

@media (max-width: 360px) {
    .logo {
        left: 2vw;
    }
    .sign-section,
    .sign-section-2 {
        max-width: 85vw;
        height: 75vh;
        left: 3vh;
        top: 20vh;
        right: 1vh;
    }
    .box-sign {
        max-width: 10vw;
        left: 0px;
        margin: 0 10px;
    }
    .signy {
        width: 70vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }
    .links,
    .links2 {
        gap: 3px;
    }
    .input-group input {
        all: unset;
        width: 200px;
        height: 40px;
        border: 1px solid blue;
        border-radius: 5px;
        backdrop-filter: blur(500px);
        padding-left: 10px;
    }
}

@media (max-width: 300px) {
    .logo {
        left: -3vw;
    }
    .sign-section,
    .sign-section-2 {
        max-width: 100vw;
        height: 75vh;
        left: 3vh;
        top: 23vh;
        right: 1vh;
    }
    .box-sign {
        max-width: 10vw;
        left: 0px;
        margin: 0 20px;
    }
    .signy {
        max-width: 70vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }
    .links,
    .links2 {
        gap: 3px;
    }
    .input-group input {
        width: 170px;
        height: 40px;
        border: 1px solid blue;
        border-radius: 5px;
        backdrop-filter: blur(500px);
        padding-left: 10px;
    }
    body {
        max-width: 100vw;
        height: 150vh;
        background-image: url("./assets/login-bg.png");
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        overflow-y: hidden;
    }
}
body.dark-mode .notification-time {
  color: #8a919e;
/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* Print styles */
@media print {
  .logo, .footer-brand img {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
@keyframes shimmer {
  100% {
    left: 100%;
  }
}
