.logo {
    font-weight: bold;
    font-size: 22px;
    color: #0c5a86;
}
.auth-card span {
    font-size: 22px!important;
}

/* ===============================
   PREMIUM B2B AUTH UI
================================ */

.auth-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  background: linear-gradient(120deg, #020617, #0f172a);
  overflow: hidden;
}

/* LEFT BRAND PANEL */
.auth-left {
  width: 50%;
  background: linear-gradient(135deg, rgba(245,158,11,0.85), rgba(15,23,42,0.9)),
              url("../images/warehouse.jpg") center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.auth-left h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.auth-left p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 420px;
  /* padding-left:140px; */
}

.m-left {
    padding-left: 17%;
}
.p-left {
    padding-left: 15%;
}

.auth-left .stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.auth-left .stat-box {
  background: rgba(255,255,255,0.15);
  padding: 16px 22px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

.auth-left .stat-box h3 {
  font-size: 22px;
}

/* RIGHT LOGIN PANEL */
.auth-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(245,158,11,0.85), rgba(120, 245, 234, 0.9));
}

/* LOGIN CARD */
.auth-card {
  width: 420px;
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  animation: fadeIn 0.6s ease;
}

.auth-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #020617;
}

.auth-card span {
  font-size: 13px;
  color: #6b7280;
}

/* INPUTS */
.auth-input {
  margin-top: 16px;
}

.auth-input input {
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.auth-input input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

/* BUTTON */
.auth-btn {
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #f59e0b, #facc15);
  color: #020617;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(245,158,11,0.4);
}

/* LINKS */
.auth-links {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
}

.auth-links a {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .auth-left {
    display: none;
  }
  .auth-right {
    width: 100%;
  }
}
