body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--epoo-blue-900) 0%, #1a1a1a 60%, var(--epoo-bg) 60%);
  padding: 24px;
}
.auth-card {
  width: 100%;
  max-width: 420px;
}
.auth-brand {
  text-align: center;
  color: var(--epoo-white);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.auth-brand .dot { color: var(--epoo-green-500); }
.auth-card .card {
  padding: 32px;
}
.auth-card h1 { font-size: 1.4rem; margin-bottom: 6px; }
.auth-card .subtitle { margin-bottom: 24px; }
.auth-switch { text-align: center; margin-top: 18px; font-size: 0.9rem; }

/* Split-screen login layout ------------------------------------------------ */
body.split-layout {
  padding: 0;
  align-items: stretch;
  background: var(--epoo-blue-900);
}

.split-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 480px) 1fr;
  width: 100%;
  min-height: 100vh;
  background: url('../../shared/img/nenuphar.jpeg') center / cover no-repeat, var(--epoo-blue-900);
}
.split-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  /* One continuous dark tint over the whole photo, shared by both panels, so
     the split doesn't read as "two different backgrounds" and form/text stay legible. */
  background: linear-gradient(160deg, rgba(17, 17, 17, 0.68) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}

.split-form-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: rgba(17, 17, 17, 0.35);
  overflow: hidden;
  z-index: 1;
}

.split-form-inner {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.split-brand {
  color: var(--epoo-white);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 40px;
}
.split-brand .dot { color: var(--epoo-green-500); }
.split-form-inner h1 { color: var(--epoo-white); font-size: 2rem; margin-bottom: 8px; }
.split-form-inner .subtitle { color: rgba(255, 255, 255, 0.6); margin-bottom: 32px; }

.glass-field { margin-bottom: 18px; }
.glass-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.glass-field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--epoo-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  color: var(--epoo-white);
  font-size: 0.95rem;
}
.glass-field input::placeholder { color: rgba(255, 255, 255, 0.35); }
.glass-field input:focus {
  outline: none;
  border-color: var(--epoo-green-500);
  background: rgba(255, 255, 255, 0.1);
}

.split-form-inner .btn-primary { margin-top: 8px; }
.split-switch {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.split-switch a { color: var(--epoo-green-500); font-weight: 600; }

.split-visual-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 48px;
}

.split-giant-word {
  position: absolute;
  right: 48px;
  bottom: 40px;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
  text-align: right;
}
.split-giant-word span {
  display: block;
  color: var(--epoo-green-500);
  -webkit-text-stroke: 0;
  opacity: 0.9;
}

@media (max-width: 860px) {
  .split-shell { grid-template-columns: 1fr; }
  .split-visual-panel { display: none; }
  .split-form-panel { padding: 32px 24px; }
}
