/* Login / Register pages — split navy panel + white card (be-finance inspired) */
.eb-auth-shell {
  --eb-navy: #0e1b32;
  --eb-navy-soft: #16253f;
  --eb-teal: #14b8a6;
  --eb-teal-dark: #0d9488;
  display: flex;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(14, 27, 50, .14);
  background: #fff;
}

.eb-auth-side {
  position: relative;
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 46px 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(112, 145, 245, .35), transparent 30%),
    linear-gradient(160deg, var(--eb-navy) 0%, #1a376b 60%, #2c5aa8 120%);
  color: #fff;
}

.eb-auth-side::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.eb-auth-side::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -90px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}

.eb-auth-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 750;
}

.eb-auth-brand img {
  height: 30px;
  width: auto;
}

.eb-auth-side__body {
  position: relative;
  z-index: 1;
}

.eb-auth-side__body h2 {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.eb-auth-side__body p {
  color: #c8d5ec;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 380px;
}

.eb-auth-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eb-auth-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #e7ecf8;
}

.eb-auth-points .iconify {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .12);
  color: #55d6a6;
  font-size: 16px;
}

.eb-auth-side__trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #9db0d6;
}

.eb-auth-card {
  flex: 1 1 auto;
  min-width: 0;
  padding: 46px 52px;
}

.eb-auth-card .header-section h4 {
  color: var(--eb-navy);
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.eb-auth-card .login-section > h6:first-child {
  color: #7c879e;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 22px;
}

.eb-auth-card .login-section h6.mt-4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--eb-navy);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-top: 30px !important;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef1f7;
}

.eb-auth-card .form-group {
  margin-bottom: 16px;
}

.eb-auth-card .already-have-account p {
  color: #7c879e;
  font-size: 13.5px;
}

.eb-auth-card .already-have-account a {
  color: var(--eb-teal-dark);
  font-weight: 700;
}

.eb-auth-card .forgot-password a {
  color: var(--eb-teal-dark);
  font-weight: 650;
  font-size: 13px;
}

.eb-auth-card .form-check-label {
  font-size: 13px;
  color: #566079;
}

.eb-auth-card .form-check-label a {
  color: var(--eb-teal-dark);
  font-weight: 650;
}

@media (max-width: 991.98px) {
  .eb-auth-shell {
    flex-direction: column;
    border-radius: 22px;
  }

  .eb-auth-side {
    flex: 0 0 auto;
    padding: 32px 28px;
    gap: 18px;
  }

  .eb-auth-side__body p {
    margin-bottom: 16px;
  }

  .eb-auth-points {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .eb-auth-side__trust {
    padding-top: 16px;
  }

  .eb-auth-card {
    padding: 32px 24px;
  }
}

@media (max-width: 575.98px) {
  .eb-auth-card {
    padding: 26px 18px;
  }

  .eb-auth-points {
    flex-direction: column;
  }
}
