.c-private-area-landing {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 1000px;
}
.c-private-area-landing__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  pointer-events: none;
  user-select: none;
}
.c-private-area-landing__bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.6) 25%, transparent 60%);
  z-index: 1;
}
.c-private-area-landing__bg-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-private-area-landing__bg-image {
    width: 100%;
    opacity: 0.25;
  }
}
.c-private-area-landing__inner {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  padding: 64px;
  align-items: center;
  gap: 64px;
  border-radius: 24px;
  background: #FFF;
  width: 100%;
  max-width: 1184px;
  margin: 0 auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-private-area-landing__inner {
    flex-direction: column;
    padding: 40px 20px 48px;
    gap: 40px;
  }
}
.c-private-area-landing__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
}
@media (max-width: 767px) {
  .c-private-area-landing__info {
    width: 100%;
  }
}
.c-private-area-landing__back {
  font-family: var(--primary-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  /* 25.2px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 10%;
  /* 1.4px */
  text-underline-offset: 12%;
  /* 1.68px */
  text-underline-position: from-font;
}
.c-private-area-landing__back-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: -1px;
}
.c-private-area-landing__title {
  font-family: var(--primary-font);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1557b5;
  margin: 0;
}
.c-private-area-landing__subtitle {
  font-family: var(--primary-font);
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 1.4;
  color: #1c2024;
  margin: 0;
}
.c-private-area-landing__body {
  font-family: var(--primary-font);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.5;
  color: #1c2024;
  margin: 0;
}
.c-private-area-landing__register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 12px 32px;
  border: 1px solid #1557b5;
  border-radius: 4px;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #1557b5;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.c-private-area-landing__register-btn:hover {
  background: #1557b5;
  color: #fff;
}
.c-private-area-landing__register-btn:focus-visible {
  outline: 2px solid #1557b5;
  outline-offset: 2px;
}
.c-private-area-landing__login-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-top: 8px;
  width: 50%;
}
@media (max-width: 767px) {
  .c-private-area-landing__login-panel {
    width: 100%;
  }
}
.c-private-area-landing__login-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #081462;
  border: 1px solid #081462;
  border-radius: 4px;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.c-private-area-landing__login-btn:hover {
  background: #0a1a7a;
  border-color: #0a1a7a;
  box-shadow: 0 2px 8px rgba(8, 20, 98, 0.35);
}
.c-private-area-landing__login-btn:focus-visible {
  outline: 2px solid #081462;
  outline-offset: 2px;
}
.c-private-area-landing__reset-link a {
  font-family: var(--primary-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  /* 25.2px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 10%;
  /* 1.4px */
  text-underline-offset: 12%;
  /* 1.68px */
  text-underline-position: from-font;
}