.newsletter__section {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--accent);
}

.newsletter__contentContainer {
  max-width: 1920px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 64px 200px;
}

.newsletter__leftContainer {
  width: 50.498%;
  display: flex;
  flex-direction: column;
}

.newsletter__title {
  max-width: 410px;
  display: block;
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  word-break: break-word;
  color: var(--black);
  text-transform: uppercase;
}

.newsletter__subtitle {
  max-width: 410px;
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  word-break: break-word;
  color: var(--black);
}

.newsletter__rightContainer {
  width: 49.502%;
  display: flex;
  flex-direction: column;
}

.newsletter__inputSuptitle {
  display: block;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.007em;
  text-align: left;
  color: var(--black);
}

.newsletter__input {
  height: 52px;
  width: 100%;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 0;

  &:focus-visible {
    outline: none;
    outline-offset: 0;
    box-shadow: none;
  }
}

.newsletterMessageContainer {
  width: 100%;
  display: flex;
}

.newsletterMessage {
  margin-top: 12px;
  font-family: var(--font-body-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: -0.28px;
  text-align: center;
}

.newsletterMessage_error {
  color: var(--error);
}

.newsletterMessage_success {
  font-weight: 500;
  color: var(--success);
}

.newsletter__checkboxContainer {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 16px;
}

.newsletter__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  margin-right: 8px;
  cursor: pointer;
}

.newsletter__checkboxDescription {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  word-break: break-word;
  color: var(--black);
}

.newsletter__checkboxDescriptionLink {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
  text-decoration: underline;
}

.newsletter__submitButton {
  width: fit-content;
  padding: 17.5px 24px;
  margin-top: 40px;
  text-decoration: none;
  border: 1px solid var(--black);
  border-radius: 3px;
  background-color: var(--black);
  cursor: pointer;
}

.newsletter__submitButton_disabled {
  border: 1px solid var(--dark);
  background-color: var(--dark);
  cursor: not-allowed;
}

.newsletter__submitButton:hover {
  .newsletter__submitButtonText {
    color: var(--accent);
  }
}

.newsletter__submitButton_disabled:hover {
  .newsletter__submitButtonText {
    color: var(--light_gray4);
  }
}

.newsletter__submitButton:active {
  box-shadow: 0 0 8px 0 var(--blue);
}

.newsletter__submitButton_disabled:active {
  box-shadow: none;
}

.newsletter__submitButtonText {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.7px;
  color: var(--light_gray4);
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1440px) {
  .newsletter__contentContainer {
    padding: 64px 56px;
  }
}

@media (max-width: 1150px) {
  .newsletter__section {
    justify-content: center;
  }

  .newsletter__contentContainer {
    flex-direction: column;
    padding: 64px 160px;
  }

  .newsletter__leftContainer, .newsletter__rightContainer {
    width: 100%;
  }

  .newsletter__inputSuptitle {
    margin-top: 34px;
  }
}

@media (max-width: 767px) {
  .newsletter__contentContainer {
    padding: 64px 24px;
  }
}
