 /* Authentication Pages Styling */
 body {
    background: #ffffff !important;
  }

   .auth-container {
      min-height: 100vh;
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem 1rem;
  }

  .auth-card {
      width: 100%;
      max-width: 400px;
      background-color: #ffffff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .auth-title {
      font-size: 20px !important;
      font-weight: 500;
      text-align: center;
      color:#1E5359;
      margin-bottom: 0.5rem;
  }

  .auth-subtitle {
      text-align: center;
      color: #666;
      font-size: 14px;
      margin-bottom: 2rem;
  }

  .auth-options {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
  }

  .auth-option-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      border: 1px solid #e0e0e0;
  }

  .auth-option-icon {
      width: 20px;
      height: 20px;
  }

  .user-btn {
      background-color: #fff;
      color: #333;
      border-color: #1E5359;
  }

  .user-btn:hover {
      background-color: #f0fdf4;
  }

  .business-btn {
      background-color: #fff;
      color: #333;
      border-color: #1E5359;
  }

  .business-btn:hover {
      background-color: #f0fdf4;
  }

  .auth-footer {
      text-align: center;
      font-size: 14px;
      color: #666;
  }

  .auth-link {
      color: #1E5359;
      text-decoration: none;
      font-weight: 500;
  }

  .auth-link:hover {
      text-decoration: underline;
  }

  /* Form Styling */
  .auth-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
  }

  .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .form-label {
      font-size: 14px;
      font-weight: 500;
      color: #333;
  }

  .form-input {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      font-size: 14px;
      transition: all 0.2s ease;
  }

  .form-input:focus {
      outline: none;
      border-color: #1E5359;
      box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
  }

  .auth-button {
      width: 100%;
      padding: 0.75rem;
      background-color: #1E5359;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease;
  }

  .auth-button:hover {
      background-color: #4a858b;
  }

  .auth-button:disabled {
      background-color: #9ca3af;
      cursor: not-allowed;
  }

  .auth-button.loading {
      background-color: #1E5359;
      cursor: not-allowed;
  }

  .auth-button .spinner {
      margin-left: 0.5rem;
  }

  /* Password Input Container */
  .password-input-container {
      position: relative;
      display: flex;
      align-items: center;
  }

  .password-input-container input[type="password"],
  .password-input-container input[type="text"] {
      padding-right: 3rem !important;
  }

  .password-toggle {
      position: absolute;
      right: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      z-index: 10;
      user-select: none;
      outline: none;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      background: rgba(30, 83, 89, 0.05);
      border: none;
      color: #64748b;
  }

  .password-toggle:hover {
      background: rgba(30, 83, 89, 0.1);
      transform: scale(1.05);
  }

  .password-toggle:focus {
      color: #1E5359;
  }

  /* Messages */
  .message {
      padding: 0.75rem;
      border-radius: 4px;
      font-size: 14px;
      margin-bottom: 1rem;
  }

  .message-error {
      background-color: #fee2e2;
      color: #dc2626;
      border: 1px solid #fecaca;
  }

  .message-success {
      background-color: #83d2db;
      color: #1E5359;
      border: 1px solid #1E5359;
  }

  /* Responsive Design */
  @media (min-width: 640px) {
      .auth-card {
          padding: 2.5rem;
      }
  }

  @media (min-width: 1024px) {
      .auth-card {
          padding: 3rem;
      }
  }
  /* Auth Container */
  .auth-container {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff !important;
      padding: 2rem;
  }

  /* Auth Card */
  .auth-card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      padding: 2.5rem;
      width: 100%;
      max-width: 420px;
  }

  /* Auth Form */
  .auth-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .form-label {
      font-weight: 500;
      color: #374151;
      font-size: 0.875rem;
  }

  .form-input {
      padding: 0.75rem 1rem;
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      font-size: 0.875rem;
      transition: all 0.2s ease;
      background: #f9fafb;
  }

  .form-input:focus {
      outline: none;
      border-color: #1E5359 ;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
      background: white;
  }

  .form-input::placeholder {
      color: #9ca3af;
  }

  /* Auth Button */
  .auth-button {
      background: #1E5359;
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      margin-top: 0.5rem;
  }

  .auth-button:hover {
      background: #1E5359;
      transform: translateY(-1px);
  }

  /* Loading Button States */
  .auth-button.loading {
      background: #1E5359;
      cursor: not-allowed;
      opacity: 0.8;
      transform: none;
      position: relative;
  }

  .auth-button.loading:hover {
      background: #1E5359;
      transform: none;
  }

  .auth-button .spinner {
      display: none;
      width: 16px;
      height: 16px;
      border: 2px solid #ffffff40;
      border-top: 2px solid #ffffff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-right: 8px;
  }

  .auth-button.loading .spinner {
      display: inline-block;
  }

  .auth-button.loading .button-text {
      opacity: 0.7;
  }

  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }

  /* Dots animation for loading text */
  .loading-dots::after {
      content: '';
      animation: dots 1.5s infinite;
  }

  @keyframes dots {
      0%, 20% { content: ''; }
      40% { content: '.'; }
      60% { content: '..'; }
      80%, 100% { content: '...'; }
  }

  /* Auth Footer */
  .auth-footer {
      text-align: center;
      margin-top: 1.5rem;
      color: #6b7280;
      font-size: 0.875rem;
  }

  .auth-link {
      color: #1E5359;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s ease;
  }

  .auth-link:hover {
      color: #1E5359;
  }

  /* Messages */
  .message {
      padding: 0.75rem 1rem;
      border-radius: 6px;
      margin-bottom: 1rem;
      font-size: 0.875rem;
  }

  .message-error {
      background: #fee2e2;
      color: #dc2626;
      border: 1px solid #fecaca;
  }

  .message-success {
      background: #83d2db;
      color: #1E5359;
      border: 1px solid #1E5359;
  }

  /* Responsive Design */
  @media (max-width: 480px) {
      .auth-container {
          padding: 1rem;
      }

      .auth-card {
          padding: 1.5rem;
      }

      .auth-tab {
          padding: 0.5rem 1rem;
          font-size: 0.875rem;
      }
  }

  /* Login Page Layout */
  .login-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
  }
  .login-split-card {
    display: flex;
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .login-illustration {
    flex: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
  }
  .login-form-side {
    flex: 1;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
    margin-left: 15px;
  }
  .login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1E5359;
    margin-bottom: 0.5rem;
  }
  .login-subtitle {
    color: #666;
    margin-bottom: 2rem;
  }
  .login-back-link {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1E5359;
    font-weight: 500;
    text-decoration: none;
    z-index: 10;
    font-size: 1.1rem;
  }
  .login-back-icon {
    font-size: 1.3rem;
  }
  .login-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
  }
  .login-remember-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: #1E5359;
  }
  .login-forgot-link {
    color: #1E5359;
    font-size: 0.95rem;
    text-decoration: none;
  }
  .login-forgot-link:hover {
    text-decoration: underline;
  }
  @media (max-width: 700px) {
    .login-bg {
      padding: 0 !important;
    }
    .login-split-card {
      flex-direction: column !important;
      max-width: 98vw !important;
      min-width: 0 !important;
      padding: 0 !important;
      box-shadow: none !important;
      border-radius: 0 !important;
    }
    .login-illustration {
      min-width: 0 !important;
      width: 100% !important;
      justify-content: center !important;
      padding: 2rem 0 1rem 0 !important;
    }
    .login-form-side {
      min-width: 0 !important;
      width: 100% !important;
      padding: 1.5rem 1rem !important;
      margin-left: 0 !important;
    }
    .login-title {
      font-size: 1.3rem !important;
    }
    .login-back-link {
      top: 1rem;
      left: 1rem;
      font-size: 1rem;
    }
  }
