.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  width: 58%;
  padding: 28px 40px;
  background: #fff;
}
.header__log-in {
  display: inline-block;
  font: 400 14px/1.3 "Open Sans", sans-serif;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
  color: #89071f;
  font-size: 16px;
}
.header__languages_container {
  top: 50%;
  left: 0;
  right: 60px;
  z-index: 5;
  width: 120px;
  height: 22px;
  padding: 0;
  text-align: right;
  position: relative;
  margin-left: auto;
  margin-right: 28px;
}
.header__languages_current {
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 22px;
  padding: 0 4px;
  box-sizing: border-box;
  border-radius: 6px;
  font: 100 12 px/1.3 "Open Sans", sans-serif;
  text-decoration: none;
  text-align: center;
  background: 0 0;
  cursor: pointer;
  outline: none;
  width: max-content;
  font-size: 16px;
  font-weight: 400;
  border: none;
}
.header__languages_current:hover {
  background: rgba(149, 30, 44, 0.2);
  border-color: #932337;
}
.header__languages_current > span {
  margin-right: 4px;
  text-decoration: none;
  color: #323232;
}
.header__languages_list {
  display: flex;
  position: absolute;
  right: 0;
  top: 100%;
  justify-content: flex-start;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
}
.header__languages_list li {
  margin-right: 10px;
}
.header__languages_list li:last-of-type {
  margin: 0;
}
.header__languages_list li a {
  text-decoration: none;
  color: #323232;
}
.header__languages_list.hidden {
  display: none;
}

.footer {
  max-height: 288px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
}
.footer__info-links {
  line-height: 1.5;
  text-align: center;
  margin: 0 0 12px;
}
.footer__info-links > a {
  display: inline-block;
  margin: 0 40px 0 0;
  text-decoration: none;
  color: #323232;
  font-size: 16px;
}
.footer__info-links > a:last-of-type {
  margin: 0;
}
.footer__social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 0;
  height: 80px;
}
.footer__social-link {
  width: 34px;
  height: 36px;
  margin: 0 10px 0 0;
}

html {
  font-size: 10px;
  height: 100%;
}
@media (min-width: 360px) {
  html {
    font-size: 11px;
  }
}
@media (min-width: 412px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 868px) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
}

body {
  font-family: Open Sans, serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 22px;
  color: #323232;
  height: 100%;
  margin: 0;
}

.page__container {
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 100%;
  margin-bottom: 56px;
}
.page__container_aside {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.page__container_image-wrapper {
  width: 42%;
  height: 100vh;
  overflow: hidden;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}
.page__container_image-wrapper > img {
  min-width: 100%;
  min-height: 100%;
  display: block;
  object-fit: fill;
}

.sign-up__form {
  max-width: 328px;
}
.sign-up__title {
  font-size: 20px;
  color: #323232;
  font-weight: 700;
  text-align: center;
  margin-bottom: 29px;
}
.sign-up__label {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
  color: #aab2bd;
  font-size: 16px;
  font-weight: 400;
}
.sign-up__name-input {
  width: 100%;
  height: 22px;
  line-height: 22px;
  padding: 0;
  font-size: 16px;
  color: #000;
  border: none;
  outline: none;
  background-color: transparent;
}
.sign-up__name-input_container {
  display: flex;
  align-items: center;
  width: 328px;
  height: 48px;
  position: relative;
  padding: 0 16px;
  background-color: #fff;
  border: 1px solid #e6e9ed;
  border-radius: 12px;
  box-sizing: border-box;
  margin-bottom: 24px;
}
.sign-up__name-input_container:focus-within, .sign-up__name-input_container:hover {
  border-color: #89071f;
  background-color: #fff;
}
.sign-up__radio_container {
  display: flex;
}
.sign-up__radio_label {
  color: #323232;
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-transform: capitalize;
}
.sign-up__radio_label:first-of-type {
  margin-right: 20px;
}
.sign-up__radio_label:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #aab2bd;
  margin-right: 8px;
}
.sign-up__radio_input {
  display: none;
}
.sign-up__radio_input:checked + .sign-up__radio_label:before {
  border: 1px solid #89071f;
  background-color: #89071f;
  box-shadow: inset 0 0 0 4px #fff;
}
.sign-up__submit-button {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 16px;
  background-color: #89071f;
  color: #fff;
  height: 48px;
  padding: 0 12px;
  display: block;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
  border: none;
  border-radius: 12px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.sign-up__submit-button:hover {
  background: #a71a34;
}
.sign-up__submit-button_text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
