/* Frozen Foods Page Specific Styles */

/* Hero Section */
.category-hero {
    background: linear-gradient(135deg, #3dff45, #2787dc);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
  }
  
  .category-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .category-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .category-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .category-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
  }
  
  .category-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .category-stats span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }
  
  .category-stats i {
    font-size: 1.1rem;
    color: var(--white);
  }
  
  /* Category Page Layout */
  .category-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  /* Category Controls */
  .category-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;

  }
  
  .category-search {
    position: relative;
    flex: 1;
    max-width: 400px;
  }
  
  .category-search input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8fafc;
  }
  
  .category-search input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
    outline: none;
    background-color: var(--white);
  }
  
  .category-search i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
  }
  
  .category-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .category-filters select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
    cursor: pointer;
    min-width: 160px;
    transition: var(--transition);
    color: var(--text-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23094e8a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
    padding-right: 2.5em;
  }
  
  .category-filters select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
    outline: none;
  }
  
  /* Product Sections */
  .product-section {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    justify-content: center;
  }
  
  .section-title i {
    color: var(--primary-color);
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
  
  .product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
  }
  
  .product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .product-image {
    position: relative;
    height: 160px;
    overflow: hidden;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .product-badge.fresh {
    background: #4caf50;
    color: var(--white);
  }
  
  .product-badge.popular {
    background: #ff9800;
    color: var(--white);
  }
  
  .product-badge.organic {
    background: #8bc34a;
    color: var(--white);
  }
  
  .product-badge.seasonal {
    background: #e91e63;
    color: var(--white);
  }
  
  .product-info {
    padding: 16px;
  }
  
  .product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
  }
  
  .product-description {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 12px;
  }
  
  .product-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .product-unit {
    font-size: 0.9rem;
    color: var(--dark-gray);
  }
  
  .product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .btn-quantity {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .btn-quantity:hover {
    background: var(--primary-color);
    color: var(--white);
  }
  
  .quantity {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
  }
  
  .add-to-cart {
    flex: 1;
    padding: 10px 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  /* Product Actions */
  .product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
  }
  
  .btn-quantity {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1;
    padding: 0;
  }
  
  .btn-quantity:hover {
    background: var(--primary-color);
    color: var(--white);
  }
  
  .quantity {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-color);
  }
  
  .add-to-cart {
    flex: 1;
    padding: 10px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
  }
  
  .add-to-cart:active {
    transform: translateY(0);
  }
  
  .add-to-cart i {
    font-size: 1rem;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b3b3b3;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  
  .footer-bottom p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
  }
  
  .legal-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    white-space: nowrap;
  }
  
  .legal-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  
  /* Footer */
  .footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
    padding-bottom: 2rem;
  }
  
  .footer-brand {
    flex: 1 1 100%;
    text-align: left;
    max-width: 350px;
    padding: 0 1rem;
  }
  
  .footer-brand h3 {
    color: #ffffff;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
  }
  
  .footer-brand p {
    color: #b3b3b3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.5px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.6rem;
  }
  
  .footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-section ul li a:hover {
    color: #ffffff;
  }
  
  /* Footer Bottom Content */
  .footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  
  .app-download,
  .social-links,
  .payment-methods {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .payment-methods {
    align-items: flex-end;
  }
  
  .social-icons {
    justify-content: center;
    width: 100%;
  }
  
  .app-download p {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }
  
  .app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .app-store,
  .play-store {
    display: flex;
    align-items: center;
    background: #2d2d2d;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .app-store:hover,
  .play-store:hover {
    background: #3d3d3d;
  }
  
  .app-store i,
  .play-store i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
  
  .app-store span,
  .play-store span {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .app-store strong,
  .play-store strong {
    font-size: 0.9rem;
  }
  
  .social-links {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .social-icons a {
    color: #b3b3b3;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .social-icons .x-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .social-icons .x-logo svg {
    width: 1.1rem;
    height: 1.1rem;
    color: #b3b3b3;
    transition: color 0.3s ease;
  }
  
  .social-icons .x-logo:hover svg {
    color: #ffffff;
  }
  
  .social-icons a:hover {
    color: #ffffff;
  }
  
  .payment-methods {
    flex: 1;
    min-width: 250px;
    text-align: center;
    align-items: center;
  }
  
  .payment-methods p {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }
  
  .payment-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  
  .payment-icons i {
    font-size: 1.8rem;
    color: #b3b3b3;
    transition: color 0.3s ease;
  }
  
  .payment-icons i:hover {
    color: #ffffff;
  }
  
  /* Login Page Styles */
  .login-page-wrapper {
    display: flex;
    min-height: 100vh;
  }
  
  .login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    min-height: 100vh;
    overflow-y: auto;
    padding: 2rem 4rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  
  .back-link:hover {
    text-decoration: underline;
  }
  
  .login-header h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
    font-weight: bold;
  }
  
  .login-header p {
    color: #64748b;
    margin-bottom: 2rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 0.75rem 0.75rem;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: transparent;
  }
  
  input[type="text"]:focus {
    outline: none;
  }
  
  button[type="submit"] {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 0.5rem;
  }
  
  
  .welcome-section {
    width: 45%;
    min-height: 100vh;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #c7d2fe 0%, #e0e7ff 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  
  .welcome-content {
    max-width: 400px;
    position: relative;
    z-index: 1;
    color: black;
    text-align: center;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .welcome-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .welcome-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
    }
    
    .category-hero h1 {
      font-size: 2.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .category-hero {
      padding: 60px 0 40px;
    }
    
    .category-hero h1 {
      font-size: 2.2rem;
    }
    
    .category-hero p {
      font-size: 1rem;
    }
    
    .category-controls {
      flex-direction: column;
      gap: 15px;
    }
    
    .category-search {
      max-width: 100%;
    }
    
    .category-filters {
      width: 100%;
    }
    
    .category-filters select {
      flex: 1;
      min-width: 0;
    }
    
    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
    }
    
    .product-image {
      height: 160px;
    }
    
    .section-title {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .products-grid {
      grid-template-columns: 1fr;
    }
    
    .product-card {
      max-width: 100%;
    }
    
    .category-stats {
      gap: 10px;
    }
    
    .category-stats span {
      font-size: 0.85rem;
      padding: 0.4rem 0.8rem;
    }
    
    .section-title {
      font-size: 1.3rem;
    }
    
    .section-title i {
      font-size: 1.2rem;
      width: 32px;
      height: 32px;
    }
  }
  
  /* Footer Bottom */
  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b3b3b3;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  
  .footer-bottom p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
  }
  
  .legal-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    white-space: nowrap;
  }
  
  .legal-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  
  /* Footer */
  .footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
    padding-bottom: 2rem;
  }
  
  .footer-brand {
    flex: 1 1 100%;
    text-align: left;
    max-width: 350px;
    padding: 0 1rem;
  }
  
  .footer-brand h3 {
    color: #ffffff;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
  }
  
  .footer-brand p {
    color: #b3b3b3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.5px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.6rem;
  }
  
  .footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-section ul li a:hover {
    color: #ffffff;
  }
  
  /* Footer Bottom Content */
  .footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  
  .app-download,
  .social-links,
  .payment-methods {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .payment-methods {
    align-items: flex-end;
  }
  
  .social-icons {
    justify-content: center;
    width: 100%;
  }
  
  .app-download p {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }
  
  .app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .app-store,
  .play-store {
    display: flex;
    align-items: center;
    background: #2d2d2d;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .app-store:hover,
  .play-store:hover {
    background: #3d3d3d;
  }
  
  .app-store i,
  .play-store i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
  
  .app-store span,
  .play-store span {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .app-store strong,
  .play-store strong {
    font-size: 0.9rem;
  }
  
  .social-links {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .social-icons a {
    color: #b3b3b3;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .social-icons .x-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .social-icons .x-logo svg {
    width: 1.1rem;
    height: 1.1rem;
    color: #b3b3b3;
    transition: color 0.3s ease;
  }
  
  .social-icons .x-logo:hover svg {
    color: #ffffff;
  }
  
  .social-icons a:hover {
    color: #ffffff;
  }
  
  .payment-methods {
    flex: 1;
    min-width: 250px;
    text-align: center;
    align-items: center;
  }
  
  .payment-methods p {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }
  
  .payment-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  
  .payment-icons i {
    font-size: 1.8rem;
    color: #b3b3b3;
    transition: color 0.3s ease;
  }
  
  .payment-icons i:hover {
    color: #ffffff;
  }
  
  /* Login Page Styles */
  .login-page-wrapper {
    display: flex;
    min-height: 100vh;
  }
  
  .login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    min-height: 100vh;
    overflow-y: auto;
    padding: 2rem 4rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  
  .back-link:hover {
    text-decoration: underline;
  }
  
  .login-header h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
    font-weight: bold;
  }
  
  .login-header p {
    color: #64748b;
    margin-bottom: 2rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 0.75rem 0.75rem;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: transparent;
  }
  
  input[type="text"]:focus {
    outline: none;
  }
  
  button[type="submit"] {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 0.5rem;
  }
  
  
  .welcome-section {
    width: 45%;
    min-height: 100vh;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #c7d2fe 0%, #e0e7ff 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  
  .welcome-content {
    max-width: 400px;
    position: relative;
    z-index: 1;
    color: black;
    text-align: center;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .welcome-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .welcome-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .footer-section {
      margin-bottom: 10px;
    }
    
    .footer-section h3 {
      margin-bottom: 15px;
    }
  }
  