/* Split-screen shell shared by login / forgot-password / reset-password */

html, body {
  height: 100%;
}

.auth-shell {
  display: flex;
  min-height: 100vh;
}

/* ---------- Left: brand visual panel ---------- */

.auth-visual {
  position: relative;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-800) 70%);
}

.auth-visual-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(2px);
}
.auth-visual-blob-1 {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -80px;
}
.auth-visual-blob-2 {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: -60px;
  background: var(--accent-500);
  opacity: 0.18;
}

.auth-visual-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
  color: #fff;
}

.auth-visual-logo {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-5);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.auth-visual-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-visual-content h2 {
  color: #fff;
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.auth-visual-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-base);
  margin-bottom: var(--space-6);
}

.auth-visual-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.auth-visual-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.92);
}
.auth-visual-features i {
  color: var(--accent-400);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* ---------- Right: form panel ---------- */

.auth-form-panel {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-card);
  padding: var(--space-6);
}

.auth-form-wrap {
  width: 100%;
  max-width: 360px;
}

.auth-form-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.auth-form-subtitle {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-6);
}

.auth-submit-btn {
  width: 100%;
  height: 44px;
  background-color: var(--accent-500);
  border-color: var(--accent-500);
  color: #fff;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  font-weight: 600;
}
.auth-submit-btn:hover {
  background-color: var(--accent-600);
  border-color: var(--accent-600);
  color: #fff;
}

.forgot-pass {
  text-decoration: none;
  font-size: var(--fs-sm);
  color: var(--color-primary);
}
.forgot-pass:hover {
  color: var(--color-primary-hover);
}

.auth-form-footer {
  margin-top: var(--space-6);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

@media (max-width: 991px) {
  .auth-visual {
    display: none;
  }
  .auth-form-panel {
    flex: 1 1 100%;
  }
}
