:root {
  --brand: #4f46e5;
  --accent-red: #dc2626;
}

* { box-sizing: border-box; }

body.page-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, system-ui, sans-serif;
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
}

.progress-container {
  height: 3px;
  background: transparent;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  margin: 32px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(17, 24, 39, .08);
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #eef2ff;
}

.brand-badge img { max-width: 100%; max-height: 100%; }

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #9ca3af;
  font-size: 13px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
}

.divider span { padding: 0 10px; }

.btn-sso {
  border: 1px solid #e5e7eb;
  background: #fff;
}

.link { color: var(--brand); text-decoration: none; }
.link:hover { text-decoration: underline; }
