  /* ===== Login Page Specific ===== */
    .login-wrapper {
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      background: #f8fafc;
    }

    .login-card {
      background: #ffffff;
      padding: 40px;
      border-radius: 16px;
      width: 100%;
      max-width: 420px;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }

    .login-card h2 {
      text-align: center;
      margin-bottom: 25px;
      font-size: 24px;
      color: #0f172a;
    }

    .login-card label {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
      color: #334155;
    }

    .login-card input {
      width: 100%;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      font-size: 14px;
      margin-bottom: 18px;
      outline: none;
      transition: 0.2s ease;
    }

    .login-card input:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .login-btn {
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      border: none;
      background: #2563eb;
      color: #fff;
      font-size: 15px;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .login-btn:hover {
      background: #1e40af;
    }

    .login-footer {
      text-align: center;
      font-size: 13px;
      margin-top: 20px;
      color: #64748b;
    }
	
		.customer-help-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
 background: #f8fafc;
  border: 1px dashed #e2e8f0;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
   gap: 8px;
}

.customer-help-bar span {
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.customer-help-bar a {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.help-link {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.help-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .help-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
	   flex-wrap: nowrap;
    font-size: 14px;
  }
}

    @media (max-width: 500px) {
      .login-card {
        padding: 30px 20px;
      }
    }
	
