@font-face {
  font-family: "General Sans";
  src:
    url("../fonts/GeneralSans-Variable.woff2") format("woff2"),
    url("../fonts/GeneralSans-Variable.woff") format("woff"),
    url("../fonts/GeneralSans-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-24pt-light_commercialusefont/inter-24pt-light-regular.ttf") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Days One";
  src: url("../fonts/DaysOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

body {
  color: #ffffff;
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 35px;

  line-height: 55px;
  letter-spacing: -1%;
  text-transform: uppercase;
  height: 100vh;
  width: 100%;
  margin: 0;
}

.side-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0;
  transition: opacity 5s ease-out;
}

.side-video--active {
  z-index: -1;
  opacity: 1;
  transition: opacity 3.5s ease-in;
}

.main-layout {
  position: relative;
  width: 100%;
  height: 100vh;
}

.side-info {
  height: 100vh;
  width: 43%;
  position: relative;
  padding-left: 55px;
  padding-bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 101px;

  border-right: 1px solid;
  border-image-source: linear-gradient(180deg, rgb(0, 0, 0) 0%, #E26043 52.96%, rgb(0, 0, 0) 100%);
  border-image-slice: 1;

}



.side-info__overlay {
  background: linear-gradient(158.67deg,
      rgba(17, 13, 14, 0.9) 32.85%,
      rgba(76, 24, 0, 0.9) 144.07%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.side-info__container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 59px;
}

.side-info__header {
  max-width: 60%;
  font-family: "General Sans", sans-serif;
  
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  line-height: 55px;
  letter-spacing: -1%;
  text-transform: none;

}

.side-info__highlight {
  color: #e26043;
}

.reg-form {
  background: #0d0c0c;
  height: 100%;
  width: 57%;
  position: absolute;
  top: 0;
  right: 0;
}

/* Benefits List Block */
.benefits-list {
  list-style-type: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  /* leading-trim: NONE; */
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.benefits-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefits-list__item+.benefits-list__item {
  margin-top: 20px;
  text-transform: capitalize;
}

.benefits-list__item::before {
  content: " ";
  display: block;
  flex-shrink: 0;
  background-image: url("/skin/nutrax.partners/img/check-marker.svg");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
  background-color: #ffffff1a;
  border-radius: 16px;
}

/* Footer Block (Specific to Side Info) */
.side-info__footer {
  position: absolute;
  bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 33px;
  border-top: 1px solid #ffffff4d;
  width: 82%;
  padding-top: 24px;

  color: #cccccc;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  /* leading-trim: NONE; */
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.side-info__footer-links {
  display: flex;
  gap: 27px;
  height: 45px;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 15px;
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.btn:active {
  transform: translateY(0);
}

/* Button Modifiers */
.btn--telegram {
  border: 1px solid #e26043;
  color: #ffffff;
  gap: 12px;
}

.btn--telegram:hover {
  background-color: rgba(226, 96, 67, 0.15);
  border-color: #ff7f63;
  transform: translateY(-1px);
}

.btn--telegram::before {
  content: "";
  display: block;
  width: 22px;
  height: 20px;
  background-image: url("/skin/nutrax.partners/img/telegram.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.btn--primary {
  background: linear-gradient(90deg, #c13525 0%, #df5e40 100%);
  color: #ffffff;
  border: none;
}

.btn--primary:hover {
  box-shadow: 0 4px 15px rgba(225, 96, 67, 0.3);
  transform: translateY(-1px);
}

/* Registration Form Block */
.reg-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-form__container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  width: 90%;
  max-width: clamp(428px, 50%, 540px);
}

.reg-form__title {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 35px;

  line-height: 55px;
  letter-spacing: -1%;
  text-transform: uppercase;
  
}

.reg-form__title_projectname {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 35px;
  /*was 35px*/

  line-height: 55px;
  letter-spacing: -1%;
  text-transform: uppercase;
  
}

.reg-form__legend {
  color: #CCCCCC;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  /* was 16px */
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: none;
}

.reg-form__field {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.reg-form__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #CCCCCC;
}

.reg-form__input {
  border: 1px solid #636363;
  border-radius: 15px;
  padding: 25px 28px 25px 64px;
  background-color: #ffffff1a;
  width: 100%;
  box-sizing: border-box;
  max-height: 60px;

  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;

  line-height: 100%;
  letter-spacing: 0%;

  background-repeat: no-repeat;
  background-position: 24px center;
  background-size: 20px 20px;
}

.reg-form__input:focus {
  outline: 1px solid #C16E66;
  /* Changes the stroke color */
  outline-offset: -2px;
  /* Pulls the outline inside the border */
}

.reg-form__input--email {
  background-image: url("/skin/nutrax.partners/img/mail.svg");
}

.reg-form__input--password {
  background-image: url("/skin/nutrax.partners/img/key.svg");
}

.reg-form__input--telegram {
  background-image: url("/skin/nutrax.partners/img/telegram-white.svg");
}

.reg-form__submit {
  width: 100%;
  max-width: 280px;
  align-self: center;
  
  /* Уніфіковані стилі головної кнопки */
  height: 60px;
  padding: 0 36px;
  border-radius: 12px;
  font-family: 'Days One', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  background: linear-gradient(90deg, #C13525 0%, #DF5E40 100%);
  color: white;
  gap: 10px;
}

.reg-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(225, 96, 67, 0.3);
}

.pixel-arrow {
  width: 10px;
  height: 10px;
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
}

.reg-form__signin {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #cccccc;
  text-align: center;
  margin-top: -6px; /* gap 30px - 6px = 24px відступ від кнопки */
  text-transform: none;
}

.reg-form__link {
  color: #e26043;
  text-decoration: none;
  font-weight: 600;
  margin-left: 32px;
}

.reg-form__link:hover {
  text-decoration: underline;
}

.logo {
  display: block;
  width: 104px;
  height: 32px;
}

.side-info__logo {
  position: absolute;
  top: 44px;
  left: 55px;
}

.lang-selector {
  position: absolute;
  top: 44px;
  right: 55px;
  z-index: 10;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  border: 1px solid #C16E66;
  border-radius: 15px;
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-selector__toggle {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: opacity 0.2s;
}

.lang-selector__toggle:hover {
  opacity: 0.8;
}

.lang-selector__icon {
  transition: transform 0.3s ease;
}

.lang-selector--open .lang-selector__icon {
  transform: rotate(180deg);
}

.lang-selector__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #1a1919;
  border: 1px solid #333333;
  border-radius: 12px;
  list-style: none;
  padding: 8px 0;
  margin-bottom: 0;
  margin-left: 0;
  min-width: 80px;
  display: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.lang-selector--open .lang-selector__dropdown {
  display: block;
}

.lang-selector__option {
  padding: 10px 16px;
  cursor: pointer;
  color: #cccccc;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.lang-selector__option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.lang-selector__option--active {
  color: #e26043;
  font-weight: 600;
}