/* ---- Auth layout ---- */
body { overflow: hidden; }

.auth-layout {
  display: flex;
  width: 100vw;
  height: 100vh;
}

/* Left panel */
.auth-form-panel {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow-y: auto;
  background: #fff;
}

.auth-form-inner {
  width: 100%;
  max-width: 448px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.auth-logo img { height: 32px; width: auto; }

.auth-heading { display: flex; flex-direction: column; gap: 8px; }
.auth-heading h1 { font-size: 28px; font-weight: 500; color: var(--color-text-default); }
.auth-heading p  { font-size: 16px; color: var(--color-text-default); }

.auth-fields { display: flex; flex-direction: column; gap: 16px; }

.auth-actions { display: flex; flex-direction: column; gap: 24px; }

.button-stack { display: flex; flex-direction: column; gap: 12px; }

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 40px;
  border: 1px solid var(--color-border-secondary);
  border-radius: var(--radius-md);
  background: #fff;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-default);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-google:hover { background: var(--color-bg-surface); }

.google-logo {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.auth-switch {
  font-size: 14px;
  text-align: center;
  color: var(--color-text-default);
}

/* Right hero panel */
.auth-hero-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(135deg, #0D1B4B 0%, #1A3A8F 40%, #0A8EA0 100%);
}

.auth-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 20px 0 0 20px;
  background: rgba(255,255,255,0.04);
  padding: 40px;
}

.auth-hero-text { display: flex; flex-direction: column; gap: 8px; color: #fff; }
.auth-hero-text h2 { font-size: 18px; font-weight: 500; }
.auth-hero-text p  { font-size: 14px; line-height: 1.6; opacity: 0.92; }

/* Floating stat cards preview */
.hero-preview {
  position: absolute;
  bottom: 60px;
  left: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-stat-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--color-border-default);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.hero-stat-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-subdued);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.hero-stat-label { font-size: 14px; font-weight: 500; color: var(--color-text-default); }
.hero-stat-sub   { font-size: 12px; color: var(--color-text-secondary); }
.hero-stat-value { font-size: 22px; font-weight: 500; color: var(--color-text-default); }

/* Champion notification card */
.hero-champion-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.hero-champion-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-champion-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-champion-name { font-size: 18px; font-weight: 500; color: var(--color-text-default); }
.hero-champion-role { font-size: 13px; font-weight: 500; color: var(--color-text-default); }
.hero-champion-role span { color: var(--color-primary); }