

    /* Login/Signup Page Styles */
    .auth-page {
      padding: 80px 0;
      min-height: calc(100vh - 100px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .auth-container {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .auth-box {
      background: white;
      border-radius: 16px;
      box-shadow: var(--shadow);
      width: 100%;
      max-width: 480px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .auth-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    }

    .auth-header {
      text-align: center;
      margin-bottom: 35px;
    }

    .auth-header h2 {
      font-size: 2.8rem;
      color: var(--dark);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .auth-header p {
      color: var(--text-light);
      font-size: 1.1rem;
    }

    .auth-tabs {
      display: flex;
      margin-bottom: 30px;
      border-bottom: 1px solid #eee;
      background: #f9f9f9;
      border-radius: 8px;
      padding: 4px;
    }

    .auth-tab {
      flex: 1;
      text-align: center;
      padding: 14px;
      cursor: pointer;
      font-weight: 500;
      color: var(--text-light);
      transition: var(--transition);
      position: relative;
      border-radius: 6px;
      z-index: 1;
    }

    .auth-tab.active {
      color: white;
      background: var(--primary);
      box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    }

    .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: 24px;
    }

    .form-label {
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
      display: flex;
      align-items: center;
      color: var(--dark);
    }

    .form-label i {
      margin-right: 12px;
      color: var(--primary);
      font-size: 1.1rem;
    }

    .form-input {
      width: 100%;
      padding: 16px 18px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      font-size: 1rem;
      transition: var(--transition);
      background: #f9f9f9;
    }

    .form-input:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
      background: #fff;
    }

    .phone-input-container {
      display: flex;
      align-items: center;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
      background: #f9f9f9;
      transition: var(--transition);
    }

    .phone-input-container:focus-within {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
      background: #fff;
    }

    .country-code {
      padding: 0 18px;
      background: #f1f1f1;
      height: 100%;
      display: flex;
      align-items: center;
      font-weight: 500;
      color: var(--dark);
    }

    .phone-input {
      flex: 1;
      border: none;
      padding: 16px 18px;
      outline: none;
      background: transparent;
      font-size: 1rem;
    }

    .otp-container {
      display: flex;
      gap: 15px;
      margin: 20px 0;
      justify-content: center;
    }

    .otp-input {
      width: 55px;
      height: 65px;
      text-align: center;
      font-size: 1.5rem;
      font-weight: 600;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      transition: var(--transition);
      background: #f9f9f9;
    }

    .otp-input:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
      background: #fff;
    }

    .auth-btn {
      width: 100%;
      padding: 18px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      margin-top: 10px;
      box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }

    .auth-btn:hover {
      background: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
    }

    .resend-otp {
      text-align: center;
      margin-top: 25px;
      color: var(--text-light);
      font-size: 0.95rem;
    }

    .resend-otp a {
      color: var(--primary);
      font-weight: 500;
      transition: var(--transition);
    }

    .resend-otp a:hover {
      color: var(--secondary);
    }

    .or-divider {
      display: flex;
      align-items: center;
      margin: 30px 0;
      color: var(--text-light);
    }

    .or-divider::before,
    .or-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e0e0e0;
    }

    .or-divider span {
      padding: 0 15px;
      font-size: 0.9rem;
    }

    .social-login {
      margin-top: 25px;
    }

    .social-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .social-btn {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5f5f5;
      color: #555;
      transition: var(--transition);
      font-size: 1.2rem;
      border: 1px solid #e0e0e0;
    }

    .social-btn:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Steps indicator */
    .steps {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 35px;
    }

    .step {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #e0e0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 8px;
      font-weight: bold;
      color: white;
      position: relative;
      z-index: 2;
      transition: var(--transition);
    }

    .step.active {
      background: var(--primary);
      box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
    }

    .step-line {
      width: 60px;
      height: 3px;
      background: #e0e0e0;
      margin: 0 -2px;
      align-self: center;
      position: relative;
      transition: var(--transition);
    }

    .step-line.active {
      background: var(--primary);
    }

    .step-label {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 8px;
      font-size: 0.75rem;
      color: var(--text-light);
      white-space: nowrap;
    }

    .step.active .step-label {
      color: var(--primary);
      font-weight: 600;
    }

    /* Footer Styles */
    footer {
      background: #111;
      color: white;
      padding: 70px 0 30px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 35px;
      margin-bottom: 40px;
    }

    .footer-col h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }

    .footer-col h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 35px;
      height: 2px;
      background: var(--primary);
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul li a {
      opacity: 0.8;
      transition: var(--transition);
      font-size: 14px;
    }

    .footer-col ul li a:hover {
      opacity: 1;
      padding-left: 5px;
      color: var(--primary);
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-icons a {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .social-icons a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    .payment-methods {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .payment-methods i {
      font-size: 1.7rem;
      opacity: 0.8;
      transition: var(--transition);
    }

    .payment-methods i:hover {
      opacity: 1;
      color: var(--primary);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      opacity: 0.8;
      font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
    }

    @media (max-width: 768px) {
      .auth-box {
        padding: 30px 25px;
        margin: 20px;
      }

      .search-box {
        display: none;
      }

      .step-line {
        width: 40px;
      }
    }

    @media (max-width: 576px) {
      .auth-box {
        padding: 25px 20px;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .social-buttons {
        flex-wrap: wrap;
      }

      .otp-container {
        gap: 10px;
      }

      .otp-input {
        width: 45px;
        height: 55px;
        font-size: 1.2rem;
      }

      .step-line {
        width: 30px;
      }
    }