* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background: #f9fafb;
}

:root {
  --primary-font: "Inter", sans-serif;
  --secondary-font: "Bricolage Grotesque", sans-serif;
  --green-color: #bff100;
}

a {
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}

/* HEADER */

.site-header {
  padding: 20px;
}

/* Registration */

.pbr-main-title {
  font-size: 26px;
  font-family: var(--secondary-font);
  font-weight: 700;
  margin: 0 0 6px;
  color: #111827;
}
.pbr-header {
  text-align: center;
  margin-bottom: 30px;
}
.pbr-main-sub {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  font-family: var(--primary-font);
}

.pbr-wrap {
  padding: 40px 16px 60px;
}
.pbr-card {
  border: 1px solid #e5e7eb;
  box-shadow: 0px 1px 2px 0px #0000000d;
  background: #fff;
  border-radius: 12px;
  max-width: 510px;
  padding: 30px;
  margin: 0 auto;
}
.pbr-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 32px;
  gap: 10px;
}
.pbr-step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin-top: 19px;
  min-width: 40px;
  transition: background 0.3s;
}
.pbr-step-item.active .pbr-step-bubble,
.pbr-step-item.complete .pbr-step-bubble {
  background: var(--green-color);
  color: #06030d;
}
.pbr-step-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    color 0.3s;
    font-family: var(--primary-font);
}

.pbr-step-label{
    font-size: 11px;
  font-weight: 500;
  font-family: var(--primary-font);
  color: #9CA3AF;
  white-space: nowrap;
}

.pbr-step-item.active .pbr-step-label,
.pbr-step-item.complete .pbr-step-label {
  color: #06030d;

}

.pbr-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.pbr-panel-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  font-family: var(--primary-font);
}

.pbr-panel-sub {
      font-size: 12px;
    color: #6B7280;
    margin: 0 0 24px;
    font-family: var(--primary-font);
}