body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top left, #1e293b 0%, #0f172a 100%);
  color: #fff;
  min-height: 100vh;
}

/* ===========================
   Panels & Layout
=========================== */
.left-panel {
  background: transparent;
}

.brand span {
  color: #0284c7;
}

.features div {
  margin-bottom: 10px;
  font-size: 14px;
}

.features i {
  color: #0284c7;
  margin-right: 8px;
}

/* ===========================
   Cards
=========================== */
.login-card,
.signup-card,.forgot-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  padding: 30px 35px;
  margin: 20px auto;
}

/* ===========================
   Buttons
=========================== */
.btn-primary {
  background-color: #0284c7;
  border: none;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background-color: #0369a1;
}

.btn-outline-secondary {
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

/* ===========================
   Logo + Header Styling
=========================== */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 60px;
  margin-bottom: 6px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #0284c7;
  letter-spacing: 0.5px;
}

h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  letter-spacing: .4px;
}

.subtitle .highlight {
  color: #0284c7;
  font-weight: 600;
  margin: 0 4px;
}

/* ===========================
   Responsive Mobile Layout
=========================== */
@media (max-width: 768px) {
  .login-container .row {
    flex-direction: column;
  }

  .left-panel {
    text-align: center;
    padding: 40px 20px;
  }

  .left-panel .brand {
    justify-content: center;
  }

  .left-panel h1 {
    font-size: 24px;
  }

  .left-panel .desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: center;
  }

  .login-card,
  .signup-card {
    max-width: 90%;
    margin: 20px auto;
    padding: 25px 20px;
  }

  .btn-primary,
  .btn-outline-secondary {
    font-size: 13px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
  }

  .left-panel h1 {
    font-size: 20px;
  }

  .login-card,
  .signup-card {
    padding: 20px 15px;
  }
}

/* ===========================
   Responsive adjustments
=========================== */
@media (max-width: 576px) {
  .logo-img {
    height: 48px;
  }

  .logo-text {
    font-size: 18px;
  }

  h2 {
    font-size: 18px;
  }

  .subtitle {
    font-size: 13px;
  }
}

.form-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--bs-gray-dark);
    margin-bottom: 2px;
}
