.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  background: var(--bg-light);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: var(--space-5);

  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.auth-header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.auth-title {
  font-size: var(--text-xl);
  font-weight: 700;
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: var(--text-md);
}

.form-group {
  margin-bottom: var(--space-4);
}

.password-group {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.password-group .bb-input {
  flex: 1;
  min-width: 0; /* critical for flex overflow bugs */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.password-group .bb-btn {
  flex: 0 0 auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-message {
  margin-top: var(--space-3);
  text-align: center;
}