:root {
  --brand-blue: #1c6cab;
  /* Seekeel blue */
  --brand-green: #4caf50;
  /* Seekeel green */
  --brand-text: #0f1b2d;
  --card-radius: 18px;
}

.auth-shell {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
}

.auth-card {
  width: min(1100px, 100%);
  background: #fff;
  overflow: hidden;
  border-radius: var(--card-radius);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.08),
    0 6px 20px rgba(16, 24, 40, 0.06);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

@media (max-width: 992px) {
  .auth-card {
    grid-template-columns: 1fr;
  }
}

.auth-hero {
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    #2f86c6 40%,
    var(--brand-green) 100%
  );
  color: #fff;
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.auth-hero .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.auth-hero .brand img {
  height: clamp(32px, 6vw, 44px);
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.auth-hero h1 {
  font-weight: 800;
  margin: 24px 0 8px;
}

.auth-hero p {
  opacity: 0.95;
  max-width: 46ch;
  margin: 0;
}

.auth-pane {
  padding: clamp(24px, 4.5vw, 48px);
  display: grid;
  align-content: center;
}

.auth-title {
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 18px;
}

.text-muted-sm {
  color: #667085;
}

.status-icon {
  font-size: 4rem;
  line-height: 1;
  display: inline-block;
}

.btn-brand {
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1rem;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  transition: transform 0.06s ease, filter 0.2s ease;
}

.btn-brand:hover {
  filter: brightness(1.05);
}

.btn-brand:active {
  transform: translateY(1px) scale(0.99);
}

.auth-links a {
  color: var(--brand-blue);
}

.auth-links a:hover {
  text-decoration: underline;
}
