/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  transition: background-color 0.3s, color 0.3s;
}

body.light {
  background: #f8f9fa;
  color: black;
}
body.dark {
  background: black;
  color: white;
}

body.dark .navbar {
  background: rgb(19, 18, 18);
  color: white;
}
body.dark .nav-links a {
  color: white;
}

body.dark .logo {
  color: white;
}

body.dark .search-bar {
  background-color: #222;
}

body.dark .search-bar input {
  color: white;
}

body.dark .search-bar button {
  color: white;
}
body.dark .nav-icons .icon {
  color: white;
}

body.dark .products-grids .products-cards {
  color: white;
  background-color: #222;
}
body.dark .container .page-title {
  color: white;
}

body.dark .filters .filter-group .filter-select {
  color: white;
  background-color: #222;
  border: 1px solid rgb(101, 95, 95);
}

body.dark .products-cards .products-categorys {
  color: white;
}
body.dark .products-cards .product-title {
  color: white;
}
body.dark .products-cards .product-description {
  color: rgb(192, 174, 174);
}
body.dark .products-cards .products-prices {
  color: rgb(214, 208, 208);
}

body.dark .products-cards .wishlist-btn {
  color: rgb(192, 174, 174);
  background-color: #222;
}
body.dark .products-cards .add-to-cart {
  color: rgb(192, 174, 174);
  background-color: #222;
  border: 1px solid #3498db;
}

/* Navbar container */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: #3498db;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #3498db;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #3498db;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background-color: #f1f3f4;
  border-radius: 25px;
  padding: 8px 15px;
  width: 300px;
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
}

.search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  color: #7f8c8d;
}

/* Icons */
.nav-icons {
  display: flex;
  align-items: center;
}

.icon {
  margin-left: 20px;
  position: relative;
  cursor: pointer;
  color: #2c3e50;
  transition: color 0.3s;
}

.icon:hover {
  color: #3498db;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 992px) {
  .navbar-container {
    padding: 15px 3%;
  }

  .search-bar {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: left 0.5s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .search-bar {
    display: none;
  }

  .nav-icons {
    margin-left: auto;
  }
}

/* ================================================= */

.swiper {
  /* margin-top: 50px; */
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

.welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

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

.modal-content {
  background: white;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.4s;
}

.welcome-modal.active .modal-content {
  transform: scale(1);
}

.modal-icon {
  font-size: 4rem;
  color: #2ecc71;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.modal-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #7f8c8d;
  line-height: 1.6;
}

.close-modal {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #7f8c8d;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #e74c3c;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #7f8c8d;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.btn {
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #2ecc71, #1abc9c);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #7f8c8d;
  border: 1px solid #ddd;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(1px);
}

/* Main content */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
}

.page-title {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
  font-size: 32px;
  position: relative;
  padding-bottom: 15px;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #3498db;
}

/* Filters */
.filters {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-group {
  display: flex;
  gap: 15px;
  align-items: center;
}

.filter-select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
  font-size: 14px;
  cursor: pointer;
}

.view-options {
  display: flex;
  gap: 10px;
}

.view-btn {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.view-btn.active {
  background: #3498db;
  color: white;
  border-color: #3498db;
}

/* Product grid */
.products-grids {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.products-cards {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.products-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.products-images {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.products-images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  color: #7f8c8d;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.stars {
  color: #f39c12;
  margin-right: 8px;
}

.rating-count {
  color: #7f8c8d;
  font-size: 13px;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.add-to-cart {
  flex-grow: 1;
  background: #3498db;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-to-cart:hover {
  background: #2980b9;
}

.wishlist-btn {
  background: white;
  border: 1px solid #ddd;
  color: #7f8c8d;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.wishlist-btn:hover {
  color: #e74c3c;
  border-color: #e74c3c;
}

/* Footer Styles */
footer {
  background-color: #1a1a1a;
  color: #fff;

  margin-top: 50px;
}
body.dark footer{
  background: rgb(19, 18, 18);
  color: white;
}
body.dark .footer-main{
  background: rgb(19, 18, 18);
  color: white;
}

body.dark .footer-intro{
  background: rgb(19, 18, 18);
  color: white;
}

.footer-intro {
  text-align: start;
  margin-bottom: 30px;
  color: gray;
}
.footer-intro span {
color: rgb(176, 4, 4);
}
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #ff6b6b;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ff6b6b;
}

.footer-column p {
  color: #b0b0b0;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #333;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: #ff6b6b;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background-color: #333;
  color: #fff;
  border-radius: 4px 0 0 4px;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  padding: 0 20px;
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #ff5252;
}

.payment-methods {
  margin-top: 20px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icons i {
  font-size: 28px;
  color: #b0b0b0;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: #ff6b6b;
}

.copyright {
  color: #b0b0b0;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 4px;
  }
}



/* ===================================== Page Cart  ======================================*/

body.dark .cart-items {
  background: rgb(19, 18, 18);
  color: rgb(213, 205, 205);
  border: none;
}

body.dark .cart-items {

  border: red;
}


body.dark .page-header {
  background: rgb(19, 18, 18);
  color: rgb(213, 205, 205);
 
}
   
body.dark .container  .cart-headerss {
  background: rgb(19, 18, 18);
  color: rgb(213, 205, 205);
  border: 1px solid rgb(94, 87, 87);

}
   

body.dark .quantity-controlss .quantity-btns {
  background: rgb(19, 18, 18);
  color: rgb(201, 198, 216);
  border: 1px solid rgb(94, 87, 87);
}
   

body.dark .quantity-inputs {
  background: rgb(19, 18, 18);
  color: rgb(201, 198, 216);
  border: 1px solid rgb(94, 87, 87);

}
body.dark .cart-headerss {
  background: rgb(19, 18, 18);
  color: rgb(201, 198, 216);
  border: 1px solid red;

}
   
body.dark  .cart-itemss {
             
            border-bottom: 1px solid rgb(67, 67, 67);
            
        }
   
 
   

             /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
         
          
        }

        .page-header h1 {
            font-size: 32px;
            
        }

        .breadcrumb {
            display: flex;
            gap: 10px;
            font-size: 14px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: white;
        }

  

 
        /* Cart Layout */
        .cart-layouts {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Cart Items */
        .cart-items {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .cart-headerss {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            padding: 20px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #eee;
            font-weight: 600;
            color: #555;
        }

        .cart-itemss {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            padding: 20px;
            border-bottom: 1px solid #eee;
            align-items: center;
        }

        .cart-itemss:last-child {
            border-bottom: none;
        }

        .product-infoo {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .product-imagee {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .product-detailss h3 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .product-detailss p {
            color: #777;
            font-size: 14px;
        }

        .pricee {
            font-weight: 600;
            color: #2c3e50;
        }

        .quantity-controlss {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btns {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .quantity-btns:hover {
            background-color: #f0f0f0;
        }

        .quantity-inputs {
            width: 50px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 5px;
        }

        .remove-btns {
            color: #ff6b6b;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            transition: color 0.3s;
        }

        .remove-btn:hover {
            color: #ff5252;
        }

        /* Cart Summary */
        .cart-summary {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .cart-summary h2 {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .summary-total {
            font-weight: 700;
            font-size: 18px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .promo-code {
            margin: 20px 0;
        }

        .promo-input {
            display: flex;
            gap: 10px;
        }

        .promo-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .promo-input button {
            padding: 10px 15px;
            background-color: #6c757d;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .promo-input button:hover {
            background-color: #5a6268;
        }

        .checkout-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 10px;
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .continue-shopping {
            display: block;
            text-align: center;
            margin-top: 15px;
            color: #6a11cb;
            text-decoration: none;
            font-weight: 500;
        }

        .continue-shopping:hover {
            text-decoration: underline;
        }

        /* Recently Viewed */
        .recently-viewed {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 25px;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .product-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .product-card-content {
            padding: 15px;
        }

        .product-card h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .product-card p {
            color: #777;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .product-card .price {
            font-weight: 600;
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .add-to-cart-btn {
            width: 100%;
            padding: 10px;
            background-color: #ff6b6b;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .add-to-cart-btn:hover {
            background-color: #ff5252;
        }
 



        /* ===================Sign Page ==================== */

      
     

  

 

 
  
        /* Auth Container */
        .auth-container {
            display: flex;
            min-height: calc(100vh - 180px);
            align-items: center;
            justify-content: center;
            padding: 40px 0;
        }

        .auth-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 650px;
            overflow: hidden;
        }

        .auth-header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .auth-header h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .auth-header p {
            opacity: 0.9;
        }

        .auth-tabs {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 5px;
            margin-top: 20px;
        }

        .auth-tab {
            flex: 1;
            padding: 10px;
            text-align: center;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .auth-tab.active {
            background: white;
            color: #6a11cb;
        }

        .auth-content {
            padding: 30px;
        }

        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

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

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px 12px 45px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: #6a11cb;
            box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.1);
            outline: none;
        }

        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
            cursor: pointer;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .remember-me input {
            width: 16px;
            height: 16px;
        }

        .forgot-password {
            color: #6a11cb;
            text-decoration: none;
            font-size: 14px;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .auth-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 20px;
        }

        .auth-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .divider {
            text-align: center;
            position: relative;
            margin: 25px 0;
            color: #777;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #eee;
            z-index: 1;
        }

        .divider span {
            background: white;
            padding: 0 15px;
            position: relative;
            z-index: 2;
        }

        .social-auth {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-btn {
            flex: 1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .social-btn.google {
            color: #DB4437;
        }

        .social-btn.facebook {
            color: #4267B2;
        }

        .social-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        .auth-footer {
            text-align: center;
            color: #777;
        }

        .auth-footer a {
            color: #6a11cb;
            text-decoration: none;
            font-weight: 500;
        }

        .auth-footer a:hover {
            text-decoration: underline;
        }

        /* Benefits Section */
        .benefits-section {
            background: white;
            padding: 60px 0;
            margin-top: 40px;
        }

        .section-title {
            text-align: center;
            font-size: 28px;
            margin-bottom: 40px;
            color: #2c3e50;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }

        .benefit-card h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .benefit-card p {
            color: #777;
        }

 


.loader {
    width: 150px;
    height: 150px;
    background-color: #ff3d00;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 30px 4px rgba(0, 0, 0, 0.5) inset,
      0 5px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin: auto;
  }
  .loader:before,
  .loader:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 45%;
    top: -40%;
    background-color: #fff;
    animation: wave 5s linear infinite;
  }
  .loader:before {
    border-radius: 30%;
    background: rgba(255, 255, 255, 0.4);
    animation: wave 5s linear infinite;
  }
  @keyframes wave {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }