/* this Login, otp , password reset, forget password page css  */

input,
input.form-control,
.form-control,
.input-group input {
  background-color: #ffffff !important;
  color: #1e293b !important;
  border: #e2e8f0 !important;
}

.form-input {
  background-color: #ffffff !important;
  color: #1e293b;
}

input:focus,
.form-input:focus {
  background-color: #ffffff !important;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  outline: none;
}

input::placeholder {
  color: #94a3b8;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #1e293b !important;
  transition: background-color 9999s ease-in-out 0s;
}

input[style*="transparent"] {
  background-color: #ffffff !important;
}

/* ==========================================================================
   SummitTrace auth redesign: login page only
   Scoped to body.auth-login so reset/2FA screens are untouched for now.
   ========================================================================== */

body.auth-login {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(var(--color-primary-rgb), 0.10), transparent 32%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.auth-login .auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
}

.auth-login .auth-showcase,
.auth-login .auth-panel {
  position: relative;
  min-height: 100vh;
}

.auth-login .auth-showcase {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 40px;
  background:
    linear-gradient(140deg, #121d63 0%, #17277f 38%, #1e31a1 100%);
}

.auth-login .auth-showcase-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.auth-login .auth-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 28% 52%, rgba(24, 38, 122, 0.92) 0%, rgba(24, 38, 122, 0.82) 24%, transparent 46%);
  pointer-events: none;
}

.auth-login .auth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
  animation: authFloat 10s ease-in-out infinite;
}

.auth-login .auth-orb-one {
  top: -140px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-login .auth-orb-two {
  right: -120px;
  bottom: -20px;
  width: 240px;
  height: 240px;
  background: rgba(8, 145, 178, 0.16);
  animation-delay: -3s;
}

.auth-login .auth-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

.auth-login .auth-ribbon,
.auth-login .auth-panel-shape,
.auth-login .auth-ring {
  position: absolute;
  pointer-events: none;
}

.auth-login .auth-ribbon {
  opacity: 0.42;
  filter: blur(0.2px);
  animation: authDrift 16s ease-in-out infinite;
}

.auth-login .auth-ribbon-one {
  top: 9%;
  right: -14%;
  width: 300px;
  height: 160px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  clip-path: polygon(12% 0, 100% 0, 84% 100%, 0 100%);
}

.auth-login .auth-ribbon-two {
  left: -10%;
  bottom: 8%;
  width: 220px;
  height: 120px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.16), rgba(255, 255, 255, 0.03));
  clip-path: polygon(0 0, 88% 0, 100% 100%, 16% 100%);
  animation-delay: -6s;
}

.auth-login .auth-panel-shape {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  animation: authPulseShape 12s ease-in-out infinite;
}

.auth-login .auth-panel-shape-one {
  top: 18%;
  right: 10%;
  width: 140px;
  height: 140px;
  clip-path: polygon(50% 0, 100% 18%, 100% 82%, 50% 100%, 0 82%, 0 18%);
}

.auth-login .auth-panel-shape-two {
  bottom: 14%;
  left: 6%;
  width: 96px;
  height: 96px;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  animation-delay: -4s;
}

.auth-login .auth-ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: authRotate 24s linear infinite;
}

.auth-login .auth-ring-one {
  top: 6%;
  left: -70px;
  width: 180px;
  height: 180px;
  border-top-color: rgba(255, 255, 255, 0.26);
  border-right-color: rgba(8, 145, 178, 0.30);
}

.auth-login .auth-ring-two {
  right: -36px;
  bottom: 18%;
  width: 120px;
  height: 120px;
  border-left-color: rgba(255, 255, 255, 0.22);
  border-bottom-color: rgba(8, 145, 178, 0.24);
  animation-direction: reverse;
  animation-duration: 18s;
}

.auth-login .auth-showcase-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 640px);
  gap: 72px;
  padding: 32px 0;
  color: #fff;
  animation: authFadeUp 700ms var(--ease) both;
}

.auth-login .auth-brand-lockup,
.auth-login .auth-copy,
.auth-login .auth-trust-row {
  position: relative;
  z-index: 2;
}

.auth-login .auth-brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-login .auth-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.auth-login .auth-brand-logo,
.auth-login .auth-mobile-logo {
  width: min(260px, 100%);
  height: auto;
  filter: brightness(0) invert(1);
}

.auth-login .auth-brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.auth-login .auth-brand-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.auth-login .auth-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
  margin-top: 0;
}

.auth-login .auth-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.84);
}

.auth-login .auth-copy h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.auth-login .auth-copy p {
  margin: 0;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.auth-login .auth-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-login .auth-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.auth-login .auth-trust-row span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.auth-login .auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.auth-login .auth-panel-inner {
  width: 100%;
  max-width: 520px;
  animation: authFadeUp 760ms var(--ease) 90ms both;
}

.auth-login .auth-mobile-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.auth-login .auth-mobile-logo {
  width: min(220px, 62vw);
  filter: none;
}

.auth-login .auth-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(20, 30, 78, 0.12);
  backdrop-filter: blur(18px);
}

.auth-login .auth-card-glow {
  position: absolute;
  top: -70px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.12) 0%, transparent 72%);
  pointer-events: none;
}

.auth-login .auth-card-header,
.auth-login .auth-card-footer,
.auth-login .auth-form {
  position: relative;
  z-index: 1;
}

.auth-login .auth-card-header {
  margin-bottom: 28px;
}

.auth-login .auth-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(var(--color-primary-rgb), 0.07);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-login .auth-card-header h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #132042;
}

.auth-login .auth-card-header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.auth-login .auth-card-header p strong {
  color: #132042;
  font-weight: var(--weight-semibold);
}

.auth-login .auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-login .auth-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.auth-login .auth-field label,
.auth-login .auth-label-row label {
  margin: 0;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: #142343;
}

.auth-login .auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-login .auth-inline-link {
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  text-decoration: none;
}

.auth-login .auth-inline-link:hover {
  color: var(--color-primary-dark);
}

.auth-login .auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(21, 35, 67, 0.10);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.auth-login .auth-input-wrap:focus-within {
  border-color: rgba(var(--color-primary-rgb), 0.35);
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.08);
  transform: translateY(-1px);
}

.auth-login .auth-input-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  color: rgba(20, 35, 67, 0.46);
  font-size: 18px;
  flex-shrink: 0;
}

.auth-login .auth-input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px 0 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #132042 !important;
  font-size: 15px;
  font-weight: var(--weight-medium);
}

.auth-login .auth-input::placeholder {
  color: #90a0b7;
}

.auth-login .auth-password-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: 6px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(20, 35, 67, 0.48);
  transition:
    background-color var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.auth-login .auth-password-toggle:hover {
  background: rgba(var(--color-primary-rgb), 0.06);
  color: var(--color-primary);
}

.auth-login .auth-form-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auth-login .auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-secondary);
  cursor: pointer;
  user-select: none;
}

.auth-login .auth-checkbox span {
  white-space: nowrap;
}

.auth-login .auth-checkbox .form-check-input {
  flex-shrink: 0;
  margin: 0;
  width: 16px;
  height: 16px;
  border-color: rgba(20, 35, 67, 0.30);
  cursor: pointer;
}

.auth-login .auth-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #253bc3 100%);
  color: #fff;
  font-size: 15px;
  font-weight: var(--weight-semibold);
  box-shadow: 0 18px 36px rgba(var(--color-primary-rgb), 0.26);
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    filter var(--duration) var(--ease);
}

.auth-login .auth-submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(var(--color-primary-rgb), 0.30);
  filter: brightness(1.03);
}

.auth-login .auth-card-footer {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 35, 67, 0.08);
}

.auth-login .auth-footer-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-login .auth-footer-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.auth-login .auth-footer-badge i {
  margin-top: 2px;
  color: var(--color-success);
  font-size: 16px;
}

.auth-login .auth-footer-linkline {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.auth-login .auth-footer-linkline a,
.auth-login .auth-inline-action {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}

.auth-login .auth-footer-linkline a:hover,
.auth-login .auth-inline-action:hover {
  color: var(--color-primary-dark);
}

.auth-login .auth-inline-action {
  padding: 0;
  border: 0;
  background: transparent;
}

.auth-login .auth-otp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.auth-login .auth-otp-cell {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.auth-login .auth-otp-input {
  display: block;
  box-sizing: border-box;
  appearance: none;
  width: 100%;
  padding: 0;
  min-height: 68px;
  border-radius: 18px;
  border: 1px solid rgba(21, 35, 67, 0.10) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #132042 !important;
  text-align: center;
  font-size: 26px;
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.auth-login .auth-otp-input::placeholder {
  color: transparent;
}

.auth-login .auth-otp-input:focus {
  border-color: rgba(var(--color-primary-rgb), 0.35) !important;
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.08);
  outline: none;
  transform: translateY(-1px);
}

.auth-login .auth-otp-cell .text-danger[data-error] {
  margin-top: 6px !important;
  text-align: center;
}

.auth-login .text-danger[data-error] {
  font-size: 12px;
}

@keyframes authFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes authFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 18px, 0);
  }
}

@keyframes authDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, 14px, 0) rotate(-2deg);
  }
}

@keyframes authPulseShape {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.34;
  }

  50% {
    transform: scale(1.05) translate3d(0, -8px, 0);
    opacity: 0.52;
  }
}

@keyframes authRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199.98px) {
  .auth-login .auth-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-login .auth-showcase {
    min-height: auto;
    padding: 36px 28px;
  }

  .auth-login .auth-panel,
  .auth-login .auth-panel-inner {
    min-height: auto;
  }
}

@media (max-width: 991.98px) {
  .auth-login .auth-showcase {
    display: none;
  }

  .auth-login .auth-panel {
    min-height: 100vh;
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .auth-login .auth-panel {
    padding: 16px;
  }

  .auth-login .auth-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .auth-login .auth-card-header h2 {
    font-size: 30px;
  }

  .auth-login .auth-label-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-login .auth-otp-grid {
    gap: 10px;
  }

  .auth-login .auth-otp-input {
    min-height: 60px;
    font-size: 22px;
  }
}

.auth-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
}

.login-left-panel {
  display: none;
  width: 50%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #2f6fdc 0%,
    #1f4fa8 45%,
    #143a8b 75%,
    #0f2f6f 100%
  );
}

/* Watermark Graphics - EXACT SVG from React */
.watermark-graphics {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.watermark-graphics svg {
  width: 100%;
  height: 100%;
}

/* Flowing Arrows - EXACT Animations */
.flowing-arrow {
  position: absolute;
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: flow 15s linear infinite;
}

.flowing-arrow-1 {
  top: 15%;
  left: 10%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.flowing-arrow-2 {
  top: 40%;
  left: 70%;
  transform: rotate(-30deg);
  animation-delay: 3s;
  animation-duration: 18s;
}

.flowing-arrow-3 {
  top: 70%;
  left: 20%;
  transform: rotate(60deg);
  animation-delay: 7s;
  animation-duration: 20s;
}

.flowing-arrow-4 {
  top: 85%;
  left: 60%;
  transform: rotate(-15deg);
  animation-delay: 11s;
  animation-duration: 15s;
}

@keyframes flow {
  0% {
    transform: translateX(-100px) rotate(var(--rotation, 45deg));
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(calc(100vw + 100px)) rotate(var(--rotation, 45deg));
    opacity: 0;
  }
}

/* Left Panel Content */
.left-panel-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Brand Name - EXACT Animation from React */
.brand-name-container {
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease 0.1s both;
}

/* ===== LOGO FIX ===== */
.brand-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo Image */
.brand-logo .logo {
  max-width: 320px;
  /* size control */
  width: 100%;
  height: auto;
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  animation: logoFadeIn 1s ease 0.3s forwards;
}

/* Glow Effect behind logo */
.brand-logo .logo-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.15) 40%,
    transparent 70%
  );
  filter: blur(25px);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}

/* Logo entrance animation */
@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Soft glowing pulse */
@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-name-highlight {
  color: rgba(255, 255, 255, 0.95);
  position: relative;
}

.brand-name-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.brand-solutions {
  font-size: 0.875rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Tagline - EXACT Styling */
.brand-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  margin-top: 2rem;
  animation: fadeInDown 0.7s ease 0.5s both;
}

/* Compliance Badges - EXACT Styling */
.compliance-badges {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  animation: fadeInDown 0.7s ease 0.7s both;
}

.compliance-badges span {
  cursor: default;
}

.compliance-badges .divider {
  color: rgba(255, 255, 255, 0.3);
}

/* Right Panel - EXACT Styling */
.login-right-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f2f7;
  padding: 3rem 1.5rem;
}

.form-container {
  width: 100%;
  max-width: 28rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

/* Mobile Branding - EXACT Styling */
.mobile-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mobile-branding h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.mobile-branding .solutions {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #64748b;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Form Heading - EXACT Styling */
.form-heading {
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s ease 0.3s both;
}

.form-heading h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.form-heading p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
}

/* Form Fields - EXACT Styling */
.form-group {
  margin-bottom: 1.25rem;
  animation: fadeInDown 0.5s ease;
}

.form-group:nth-child(1) {
  animation-delay: 0.4s;
}

.form-group:nth-child(2) {
  animation-delay: 0.5s;
}

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  height: 3.5rem;
  padding-left: 3rem;
  padding-right: 1rem;
  border: 1px solid #e2e8f0;
  background-color: white !important;
  border-radius: 1rem !important;
  font-size: 1rem;
  color: #1e293b;
  transition: all 0.2s ease;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #94a3b8;
  pointer-events: none;
}

/* Remember Me - EXACT Styling */
.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  animation: fadeInDown 0.5s ease 0.6s both;
}

.custom-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.custom-checkbox::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.checkbox-label {
  font-size: 0.875rem;
  color: #475569;
  cursor: pointer;
  user-select: none;
}

/* Sign In Button - EXACT Styling */
.signin-button-wrapper {
  animation: fadeInDown 0.5s ease 0.7s both;
}

.signin-button {
  width: 100%;
  height: 3rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signin-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Form Links - EXACT Styling */
.form-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  animation: fadeIn 0.5s ease 0.8s both;
}

.form-link {
  font-size: 0.875rem;
  color: #64748b;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}

.form-link:hover {
  color: #334155;
}

.contact-support {
  color: #3b82f6;
  font-weight: 500;
}

.contact-support:hover {
  color: rgba(59, 130, 246, 0.8);
}

/* Responsive - EXACT Breakpoints from React */
@media (min-width: 992px) {
  .login-left-panel {
    display: flex;
  }

  .mobile-branding {
    display: none;
  }
}

@media (max-width: 991px) {
  .auth-container {
    flex-direction: column;
  }

  .login-left-panel {
    display: none;
  }

  .login-right-panel {
    padding: 2rem 1rem;
  }
}

/* FIX Bootstrap checkbox */
input[type="checkbox"] {
  background-color: initial !important;
  border: 1px solid #cbd5e1 !important;
}

input[type="checkbox"]:checked {
  background-color: #3b82f6 !important;
  border-color: #3b82f6 !important;
}

/* this Login, otp , password reset, forget password page css  */

/* ── Microsoft SSO button ─────────────────────────────────── */
.auth-sso-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: #94a3b8;
  font-size: 12px;
}
.auth-sso-divider::before,
.auth-sso-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.auth-sso-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.auth-sso-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  color: #111827;
  text-decoration: none;
}

/* ── SSO error banner ─────────────────────────────────────── */
.auth-sso-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 14px;
  margin-bottom: 16px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 8px;
  color: #be123c;
  font-size: 13px;
  line-height: 1.4;
}
.auth-sso-error i {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
