/* === FIX START: B2B-REGISTRATION-CONVERSION-20260709 === */
.in-registrace .b2b-registration-layout {
  --b2b-reg-ink: #2f2b2b;
  --b2b-reg-red: #c90018;
  --b2b-reg-yellow: #ffc400;
  --b2b-reg-paper: #f4f1e9;
  --b2b-reg-canvas: #f6f7f8;
  --b2b-reg-white: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  grid-template-areas: "form guide";
  gap: clamp(24px, 3.2vw, 52px);
  align-items: start;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.in-registrace .b2b-registration-layout,
.in-registrace .b2b-registration-layout *,
.in-registrace .b2b-registration-layout *::before,
.in-registrace .b2b-registration-layout *::after {
  box-sizing: border-box;
}

.in-registrace .b2b-registration-layout > .formRegistration {
  grid-area: form;
  min-width: 0;
}

.in-registrace .b2b-registration-guide {
  grid-area: guide;
  position: relative;
  align-self: start;
  overflow: hidden;
  color: var(--b2b-reg-ink);
  background: var(--b2b-reg-paper);
  border: 1px solid var(--b2b-reg-ink);
  border-top: 6px solid var(--b2b-reg-red);
  box-shadow: 8px 8px 0 rgba(47, 43, 43, 0.1);
  padding: clamp(22px, 3vw, 32px);
}

.in-registrace .b2b-registration-guide__eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 10px 5px;
  color: var(--b2b-reg-ink);
  background: var(--b2b-reg-yellow);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.in-registrace .b2b-registration-guide__title {
  margin: 0;
  color: var(--b2b-reg-ink);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.in-registrace .b2b-registration-guide__intro {
  margin: 16px 0 0;
  color: #504b4b;
  font-size: 15px;
  line-height: 1.55;
}

.in-registrace .b2b-registration-guide__steps {
  counter-reset: b2b-registration-step;
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(47, 43, 43, 0.25);
}

.in-registrace .b2b-registration-guide__steps li {
  counter-increment: b2b-registration-step;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(47, 43, 43, 0.25);
}

.in-registrace .b2b-registration-guide__steps li::before {
  content: counter(b2b-registration-step, decimal-leading-zero);
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--b2b-reg-white);
  background: var(--b2b-reg-ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.in-registrace .b2b-registration-guide__steps strong,
.in-registrace .b2b-registration-guide__steps span {
  display: block;
}

.in-registrace .b2b-registration-guide__steps strong {
  color: var(--b2b-reg-ink);
  font-size: 15px;
  line-height: 1.3;
}

.in-registrace .b2b-registration-guide__steps span {
  margin-top: 4px;
  color: #625d5d;
  font-size: 13px;
  line-height: 1.45;
}

.in-registrace .b2b-registration-guide__proofs {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.in-registrace .b2b-registration-guide__proofs li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: var(--b2b-reg-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.in-registrace .b2b-registration-guide__proofs li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--b2b-reg-red);
}

.in-registrace .b2b-registration-guide__login {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 12px 16px;
  color: var(--b2b-reg-white);
  background: var(--b2b-reg-red);
  border: 2px solid var(--b2b-reg-red);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.in-registrace .b2b-registration-guide__login:hover {
  color: var(--b2b-reg-red);
  background: var(--b2b-reg-white);
  text-decoration: none;
}

.in-registrace .b2b-registration-layout .formRegistration input:not([type="hidden"]),
.in-registrace .b2b-registration-layout .formRegistration select,
.in-registrace .b2b-registration-layout .formRegistration button {
  min-height: 48px;
}

.in-registrace .b2b-registration-layout a:focus-visible,
.in-registrace .b2b-registration-layout input:focus-visible,
.in-registrace .b2b-registration-layout select:focus-visible,
.in-registrace .b2b-registration-layout button:focus-visible {
  outline: 3px solid var(--b2b-reg-yellow);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .in-registrace .b2b-registration-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "guide"
      "form";
    gap: 28px;
  }

  .in-registrace .b2b-registration-guide {
    box-shadow: 6px 6px 0 rgba(47, 43, 43, 0.1);
  }
}

@media (max-width: 767px) {
  .in-registrace .b2b-registration-guide {
    padding: 22px 18px;
    box-shadow: 4px 4px 0 rgba(47, 43, 43, 0.1);
  }

  .in-registrace .b2b-registration-guide__title {
    font-size: 26px;
  }

  .in-registrace .b2b-registration-layout .formRegistration input:not([type="hidden"]),
  .in-registrace .b2b-registration-layout .formRegistration select,
  .in-registrace .b2b-registration-layout .formRegistration textarea,
  .in-registrace .b2b-registration-layout .formRegistration button {
    font-size: 16px;
  }
}
/* === FIX END: B2B-REGISTRATION-CONVERSION-20260709 === */
