/* Auth-specific styles */
.auth-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 400px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 24px;
}
.auth-logo .logo-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
}
.auth-logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.auth-logo p {
  font-size: 13px;
  color: var(--text-muted);
}

.auth-card {
  padding: 24px;
}

.tab-switch {
  display: flex;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 3px;
  margin-bottom: 20px;
}
.tab-switch button {
  flex: 1;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  color: var(--text-muted);
  transition: all .15s;
  font-weight: 500;
}
.tab-switch button.active {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.auth-forgot {
  text-align: right;
  margin-bottom: 14px;
}
.auth-forgot a { font-size: 12px; color: var(--green); text-decoration: none; }
.auth-switch { text-align: center; margin-top: 14px; font-size: 13px; color: var(--text-muted); }
.auth-switch a { color: var(--green); text-decoration: none; font-weight: 500; }

.input-icon-wrap { position: relative; }
.input-icon {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: var(--text-muted);
}

.demo-accounts {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.demo-title {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.demo-btn {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  color: var(--text-muted);
  margin: 0 4px;
  transition: all .15s;
}
.demo-btn:hover {
  background: var(--green-light);
  color: var(--green-text);
  border-color: var(--green);
}

.progress-bar {
  height: 4px;
  background: var(--bg);
  border-radius: 2px;
  margin-bottom: 18px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  transition: width .3s ease;
}

#reg-done h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
