/* Claimloom — auth.css
   Login / Signup / Reset password pages
*/

.cll-auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cll-bg-dark);
}
@media (min-width: 960px) {
  .cll-auth-page {
    grid-template-columns: 480px 1fr;
  }
}

/* ─── Auth Panel (white form side) ─── */
.cll-auth-panel {
  background: var(--cll-bg-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.cll-auth-panel__header {
  padding: 28px 40px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cll-auth-panel__logo {
  height: 28px;
  width: auto;
}
.cll-auth-panel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px 56px;
  max-width: 420px;
  width: 100%;
}
@media (max-width: 959px) {
  .cll-auth-panel {
    min-height: unset;
  }
  .cll-auth-panel__body {
    padding: 32px 24px 48px;
    max-width: 100%;
  }
  .cll-auth-panel__header { padding: 20px 24px 0; }
}
.cll-auth-panel__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--cll-fg-light-1);
  margin-bottom: 8px;
}
.cll-auth-panel__sub {
  font-size: 14px;
  color: var(--cll-fg-light-2);
  margin-bottom: 32px;
  line-height: 1.55;
}
.cll-auth-panel__footer {
  margin-top: 24px;
  font-size: 13px;
  color: var(--cll-fg-light-2);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cll-auth-panel__footer a {
  color: var(--cll-accent-aa-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cll-auth-panel__links {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.cll-auth-panel__links a {
  font-size: 13px;
  color: var(--cll-accent-aa-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cll-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cll-auth-form .cll-form__input {
  padding: 11px 14px;
  font-size: 15px;
}
.cll-auth-btn {
  padding: 12px 20px;
  background: var(--cll-brand-primary);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--cll-radius-sm);
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  margin-top: 4px;
}
.cll-auth-btn:hover { background: var(--cll-brand-secondary); }

/* ─── Auth side (dark decorative panel) ─── */
.cll-auth-side {
  display: none;
  background: var(--cll-bg-dark-alt);
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 960px) {
  .cll-auth-side { display: flex; }
}
.cll-auth-side__inner {
  position: relative;
  z-index: 2;
  max-width: 400px;
  text-align: center;
}
.cll-auth-side__tagline {
  font-size: 26px;
  font-weight: 700;
  color: var(--cll-fg-dark-1);
  line-height: 1.25;
  margin-bottom: 20px;
}
.cll-auth-side__desc {
  font-size: 15px;
  color: var(--cll-fg-dark-2);
  line-height: 1.65;
}
.cll-auth-side__svg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.08;
}
