/* Salubrum — auth.css */

.slb-auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.slb-auth-side {
  background: var(--slb-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}
.slb-auth-side__logo { margin-bottom: 40px; }
.slb-auth-side__logo img { height: 32px; width: auto; }
.slb-auth-side__headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--slb-fg-on-dark-primary);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.slb-auth-side__lede {
  font-size: 16px;
  color: var(--slb-fg-on-dark-secondary);
  line-height: 1.6;
  max-width: 320px;
  position: relative;
  z-index: 1;
}
.slb-auth-side__visual {
  position: absolute;
  bottom: 0; right: 0;
  opacity: 0.18;
  pointer-events: none;
}
.slb-auth-panel {
  background: var(--slb-bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}
.slb-auth-panel__inner { max-width: 360px; width: 100%; }
.slb-auth-panel__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--slb-fg-on-light-primary);
  margin-bottom: 8px;
}
.slb-auth-panel__subtitle {
  font-size: 15px;
  color: var(--slb-fg-on-light-secondary);
  margin-bottom: 32px;
}
.slb-auth-input {
  width: 100%;
  max-width: 360px;
  padding: 11px 14px;
  border: 1.5px solid var(--slb-border-light);
  border-radius: var(--slb-radius);
  font: inherit;
  font-size: 15px;
  color: var(--slb-fg-on-light-primary);
  background: var(--slb-bg-white);
  transition: border-color 0.15s;
  outline: none;
  display: block;
}
.slb-auth-input:focus { border-color: var(--slb-teal-aa-light); }
.slb-auth-input::placeholder { color: #9BA8BA; }
.slb-auth-form .slb-form-group { margin-bottom: 18px; }
.slb-auth-form .slb-label { color: var(--slb-fg-on-light-primary); }
.slb-auth-submit {
  width: 100%;
  max-width: 360px;
  padding: 13px;
  background: var(--slb-teal);
  color: var(--slb-navy);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--slb-radius);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  margin-top: 8px;
}
.slb-auth-submit:hover { background: #00d8b0; box-shadow: 0 4px 14px rgba(0,196,161,0.3); }
.slb-auth-links { margin-top: 24px; text-align: center; font-size: 14px; color: var(--slb-fg-on-light-secondary); }
.slb-auth-links a { color: var(--slb-teal-aa-light); font-weight: 500; }
.slb-auth-links a:hover { text-decoration: underline; }
.slb-auth-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; }
.slb-auth-divider::before, .slb-auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--slb-border-light); }
.slb-auth-divider span { font-size: 12px; color: var(--slb-fg-on-light-secondary); }
.slb-auth-note { font-size: 12px; color: var(--slb-fg-on-light-secondary); margin-top: 24px; line-height: 1.6; }
.slb-auth-note a { color: var(--slb-teal-aa-light); }

@media (max-width: 768px) {
  .slb-auth-layout { grid-template-columns: 1fr; }
  .slb-auth-side { display: none; }
  .slb-auth-panel { padding: 40px 24px; align-items: center; }
  .slb-auth-panel__inner { max-width: 100%; }
}
