/* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  :root {
    --primary-color: #ff7b00;         /* Elegant Royal Blue */
    --secondary-color: #4A90E2;       /* Modern Mint Green */
    --accent-color: #F5A623;          /* Warm Golden Orange */
    --background-color: #F4F7FA;      /* Soft White-Gray */
    --text-color: #2D3E50;            /* Deep Charcoal */
    --text-light: #212529;
    --border-color: #E0E6EA; 
    --background-alt: #ff7b00;      /* Soft Border Gray */
    --success-color: #2ECC71;         /* Vibrant Green */
    --danger-color: #E74C3C;          /* Bold Red */
    --warning-color: #F1C40F;         /* Bright Yellow */
    --light-primary: #E3F2FD;         /* Gentle Blue Background */
    --light-secondary: #E8F8F5;       /* Soft Mint Background */
    --light-orange: #FFF3E0;          /* Light Orange */
    --light-green: #E8F5E9;           /* Light Green */
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Elegant Shadow */
    --hover-color: #2C8F92;           /* Deep Teal */
    --focus-color: #8E44AD;           /* Sophisticated Purple */
}
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--background-color);
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Button Styles */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .btn-secondary:hover {
    background-color: rgba(74, 108, 247, 0.1);
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  
/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  height: 40px;
  margin-right: 10px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

  
/* Hero Section */
.hero {
  padding: 6rem 0;
  background-color: var(--background-alt);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
}
  
/* Features Section */
.features {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--background-color);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
}
  
/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--primary-color);
  color: white;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.cta-button:hover {
  background-color: #f0f0f0;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
  
/* Footer */
.footer {
  background-color: var(--light-orange);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo p {
  margin-top: 1rem;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-column a {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
}
  
/* Page Headers */
.page-hero {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--light-orange);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}
  
/* Auth Pages */
.auth-page {
  min-height: 100vh;
  background-color: var(--light-orange);
  display: flex;
  flex-direction: column;
}

.auth-section {
  padding: 4rem 0;
  flex: 1;
}

.auth-container {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 0 auto;
}

.auth-form-container {
  flex: 1;
  padding: 3rem;
}

.auth-form-container h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.auth-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.auth-form input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border 0.3s;
}

.auth-form input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.forgot-password {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.remember-me, .terms-checkbox {
  display: flex;
  align-items: center;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  cursor: pointer;
  user-select: none;
  gap: 8px;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--light-gray);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
}

.auth-divider span {
  position: relative;
  background-color: white;
  padding: 0 15px;
  color: var(--secondary-color);
}

.social-login {
  margin-top: 2rem;
  text-align: center;
}

.social-login-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.social-login-title::before,
.social-login-title::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.social-login-title span {
  padding: 0 1rem;
  color: var(--text-light);
}

.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background-color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--text-color);
}

.social-btn:hover {
  background-color: var(--background-alt);
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
}

.auth-image {
  flex: 1;
  background-image: url('/frontend/img/auth-image.jpg');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.auth-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.feature-highlights {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%;
}

.feature-highlights h3 {
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.feature-highlights ul {
  list-style: none;
}

.feature-highlights li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.check-icon {
  color: var(--success-color);
  font-weight: bold;
  margin-right: 10px;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
}
  /* Contact Page Styles */
  .contact-section {
    padding: 4rem 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .contact-form-container, 
  .contact-info-container {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--background-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .contact-form-container h2,
  .contact-info-container h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .contact-form .form-group {
    margin-bottom: 1.5rem;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .contact-info-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
  }
  
  .contact-info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-info-content p, 
  .contact-info-content a {
    color: #FFF3E0;
  }
  
  .contact-map {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
  }
  
  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  

/* About Page Styles */
.our-story {
  padding: 5rem 0;
}

.our-story .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.story-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.story-image {
  flex: 1;
}

.story-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.team-section {
  padding: 5rem 0;
  background-color: var(--light-orange);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: var(--background-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
}

.member-title {
  padding: 0 1.5rem;
  font-size: 0.875rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.team-member p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.values-section {
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--background-color);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
}

/* Blog Page Styles */
.blog-categories {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-color);
  font-weight: 500;
}

.category-tab.active,
.category-tab:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.featured-post {
  padding: 4rem 0;
}

.featured-post-card {
  display: flex;
  background-color: var(--background-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-post-image {
  flex: 1;
  max-width: 50%;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post-content {
  flex: 1;
  padding: 3rem;
}

.post-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(74, 108, 247, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.featured-post-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-meta {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.post-excerpt {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.blog-posts {
  padding: 4rem 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-post-card {
  background-color: var(--background-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
}

.post-image {
  height: 200px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.25rem;
  margin: 1rem 0;
  line-height: 1.4;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary-hover);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  gap: 0.5rem;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
  background-color: var(--primary-color);
  color: white;
}

.pagination-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.pagination-next {
  width: auto !important;
  padding: 0 1rem;
  border-radius: 20px !important;
}

.newsletter-section {
  padding: 5rem 0;
  background-color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}
  
/* Dashboard Styles */
.dashboard-page {
  background-color: var(--background-alt);
  min-height: 100vh;
}

.dashboard-container {
  display: flex;
  padding: 2rem 0;
}

.dashboard-sidebar {
  width: 250px;
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  align-self: flex-start;
  margin-right: 2rem;
}

.sidebar-nav {
  padding: 1.5rem 0;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
}

.sidebar-nav li {
  margin-bottom: 0.5rem;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background-color: rgba(74, 108, 247, 0.1);
  color: var(--primary-color);
}

.sidebar-nav a i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.dashboard-main {
  flex: 1;
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.dashboard-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header h1 {
  font-size: 2rem;
}

.date {
  color: var(--text-light);
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background-color: var(--background-alt);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.stat-change {
  font-size: 0.875rem;
}

.stat-change.positive {
  color: var(--success-color);
}

.stat-change.negative {
  color: var(--danger-color);
}

.stat-change.neutral {
  color: var(--text-light);
}

.recent-activity {
  margin-top: 3rem;
}

.recent-activity h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--background-alt);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

  
  .activity-item:hover {
    transform: translateY(-3px);
  }
  
  .activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
  }
  
  .activity-icon.graded {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
  }
  
  .activity-icon.uploaded {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
  }
  
  .activity-icon.feedback {
    background-color: rgba(74, 108, 247, 0.1);
    color: var(--primary-color);
  }
  
  .activity-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }
  
  .activity-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
  }
  
  .activity-timestamp {
    font-size: 0.75rem;
    color: var(--text-light);
  }
  
  .user-profile {
    display: flex;
    align-items: center;
  }
  
  .profile-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 0.5rem;
  }
  
  .logout-btn {
    margin-left: 1rem;
  }
  
  
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
  }
  
  a:hover {
    color: var(--primary-hover);
  }
  
  /* Navbar styles */
  .navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .logo-image {
    height: 36px;
    width: auto;
  }
  
  .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
  }
  
  .logo span {
    color: var(--primary-color);
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .nav-links a {
    color: var(--text-color);
    font-weight: 500;
  }
  
  .nav-links a:hover {
    color: var(--primary-color);
  }
  
  .auth-buttons {
    display: flex;
    gap: 12px;
    margin-left: 15px;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
  }
  
  /* Button styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
    gap: 10px;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--light-gray);
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  
  .btn.active {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-google, .btn-microsoft {
    background-color: white;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    justify-content: center;
    width: 100%;
    margin-bottom: 12px;
  }
  
  .btn-google:hover, .btn-microsoft:hover {
    background-color: var(--light-gray);
  }
  
  .btn-google img, .btn-microsoft img {
    height: 20px;
    width: 20px;
  }
  
  /* Auth pages styles */
  .auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .auth-section {
    flex: 1;
    padding: 60px 0;
  }
  
  .auth-container {
    display: flex;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .auth-form-container {
    flex: 1;
    padding: 40px;
  }
  
  .auth-form-container h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-color);
  }
  
  .auth-subtitle {
    color: var(--secondary-color);
    margin-bottom: 30px;
  }
  
  .auth-form {
    margin-bottom: 30px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
  }
  
  .form-row .form-group {
    flex: 1;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: border 0.3s;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus {
    border-color: var(--primary-color);
    outline: none;
  }
  
  .password-hint {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 5px;
  }
  
  .terms-checkbox {
    display: flex;
    align-items: center;
  }
  
/* Style for the container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin: 15px 0;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
  color: #333;
}

/* Hide the native checkbox */
.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Custom checkmark */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: 0.3s;
}

/* When checkbox is checked, change background */
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color, #4CAF50);
  border-color: var(--primary-color, #4CAF50);
}

/* Show the tick inside the checkmark */
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Show tick when checked */
.checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

  
  .auth-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
  }
  
  .auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
  }
  
  .auth-divider span {
    position: relative;
    background-color: white;
    padding: 0 15px;
    color: var(--secondary-color);
  }
  
  .social-login {
    margin-bottom: 25px;
  }
  
  .auth-switch {
    text-align: center;
    margin-top: 20px;
  }
  
  .auth-image {
    flex: 1;
    background-color: #f0f5ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
  .auth-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  
  .feature-highlights {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
  }
  
  .feature-highlights h3 {
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
  }
  
  .feature-highlights ul {
    list-style: none;
  }
  
  .feature-highlights li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
  }
  
  .check-icon {
    color: var(--success-color);
    font-weight: bold;
    margin-right: 10px;
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .auth-container {
      flex-direction: column;
    }
    
    .auth-image {
      order: -1;
      padding: 30px;
    }
    
    .feature-highlights {
      margin-top: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-menu-btn {
      display: block;
    }
    
    .nav-links {
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background-color: white;
      flex-direction: column;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      display: none;
      align-items: flex-start;
    }
    
    .nav-links.active {
      display: flex;
    }
    
    .auth-buttons {
      margin-left: 0;
      width: 100%;
      margin-top: 15px;
    }
    
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .auth-form-container, .auth-image {
      padding: 25px;
    }
    
    .auth-form-container h1 {
      font-size: 24px;
    }
    
    .feature-highlights {
      padding: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .auth-buttons {
      flex-direction: column;
      gap: 10px;
    }
    
    .navbar .auth-buttons .btn {
      width: 100%;
    }
  }