/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.btn {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  text-align: center;
  padding: 12px 15px;
  border: none;
  transition: background-color 0.3s;
  cursor: pointer;
}
.btn--large {
  padding: 13px 18px;
}
.btn--big {
  padding: 17px 31px;
}
.btn:hover {
  background-color: #cd303a;
}
.btn--secondary {
  background-color: #cd303a;
}
.btn--secondary:hover {
  background-color: #000;
}

.link {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
.link:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 14px;
  transform: translateY(2px);
  background: url(../assets/arrow.png);
  background-repeat: no-repeat;
  margin-right: 12px;
}

html {
  font-family: "Poppins", sans-serif;
}

main header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
main header h1 {
  font-size: 60px;
  margin: 0;
  color: #8B8B8B;
  font-weight: 100;
}
@media (max-width: 540px) {
  main header h1 {
    font-size: 32px;
  }
}
main header p {
  font-size: 20px;
  color: #000;
  margin: 0;
  text-align: center;
}
@media (max-width: 540px) {
  main header p {
    font-size: 18px;
  }
}

.header-container {
  max-width: 1425px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1400px) {
  .header-container {
    padding: 0 24px;
  }
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .container {
    padding: 0 24px;
  }
}

.register-container {
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .register-container {
    padding: 0 24px;
  }
}

.boxes {
  display: flex;
  gap: 40px;
  margin-top: 66px;
  margin-bottom: 180px;
}
@media (max-width: 991px) {
  .boxes--two-columns {
    flex-wrap: wrap;
  }
}

.box {
  padding: 55px 83px 30px;
  border: 1px solid #8B8B8B;
  position: relative;
  margin: 1px;
  height: 100%;
  background-color: #FFF;
}
@media (max-width: 540px) {
  .box {
    padding: 55px 34px 30px;
  }
}
@media (max-width: 400px) {
  .box {
    padding: 55px 24px 30px;
  }
}
.box--custom-login-pl {
  padding: 55px 65px 30px 83px;
}
@media (max-width: 540px) {
  .box--custom-login-pl {
    padding: 55px 34px 30px;
  }
}
.box__wrap {
  padding: 1px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.box__wrap:after {
  content: "";
  position: absolute;
  top: -48px;
  left: -48px;
  width: 100px;
  height: 100px;
  background-color: #FFF;
  border-right: 1px solid #8B8B8B;
  z-index: 1;
  transform: rotate(45deg);
}
.box__title-wrap {
  display: flex;
  gap: 20px;
}
.box__title-wrap img {
  width: 50px;
  height: 50px;
}
.box__title {
  margin: 0 0 17px;
  font-size: 20px;
}
.box__title--nowrap {
  text-wrap: nowrap;
}
@media (max-width: 1100px) {
  .box__title--nowrap {
    text-wrap: wrap;
  }
}

.register-form {
  display: flex;
  flex-direction: column;
}
.register-form .form-controll {
  margin-bottom: 20px;
}
.register-form .form-controll label {
  text-transform: unset;
  color: #C62C37;
}
.register-form__additional-info {
  margin: 24px 0 16px;
  font-size: 14px;
}
.register-form__additional-info span {
  color: #C62C37;
}
.register-form__submit-wrap {
  text-align: center;
}

.form-controll-wrapper {
  display: flex;
  gap: 24px;
}
@media (max-width: 720px) {
  .form-controll-wrapper {
    flex-wrap: wrap;
  }
}
.form-controll-wrapper .form-controll {
  width: 100%;
}

.form-controll {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.form-controll label {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding-left: 20px;
  font-weight: 700;
}
.form-controll input {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  font-size: 14px;
  border: 1px solid #000;
  border-radius: 0;
}
.form-controll input::-moz-placeholder {
  font-style: italic;
  color: #6d6d6d;
  font-size: 14px;
}
.form-controll input::placeholder {
  font-style: italic;
  color: #6d6d6d;
  font-size: 14px;
}
.form-controll select {
  height: 50px;
  border: 1px solid #000;
  padding: 0 20px;
}
.form-controll select:has([disabled][selected]:checked) {
  font-style: italic;
}
.form-controll .ss-main.country-select {
  height: 50px;
  border: 1px solid #000;
  border-radius: 0;
  padding-left: 20px;
  font-size: 14px;
  color: #000;
}
.form-controll .ss-main.country-select:not(.selected) .ss-values .ss-single {
  font-style: italic;
  color: #6d6d6d;
  font-size: 14px;
}

.acceptance-controll label {
  font-size: 14px;
}
.acceptance-controll label span {
  color: #C62C37;
}

.separator {
  position: relative;
  display: flex;
  align-self: flex-end;
}
@media (max-width: 899px) {
  .separator {
    margin-top: 150px;
  }
}
.separator:after, .separator:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 160px;
  height: 1px;
  background-color: #D7D7D7;
}
@media (max-width: 540px) {
  .separator:after, .separator:before {
    width: 80px;
  }
}
.separator:before {
  right: calc(100% + 150px);
}
@media (max-width: 1060px) {
  .separator:before {
    right: calc(100% + 50px);
  }
}
.separator:after {
  left: calc(100% + 150px);
}
@media (max-width: 1060px) {
  .separator:after {
    left: calc(100% + 50px);
  }
}

.form-separator {
  display: block;
  margin: 32px 0 24px;
  width: 100%;
  height: 1px;
  background-color: #D7D7D7;
}
.form-separator--large {
  margin: 32px 0 46px;
}

.logo {
  padding-top: 14px;
  width: 157px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 899px) {
  .logo {
    width: 100px;
  }
}
.logo img {
  width: 100%;
  height: auto;
}
.logo img:first-child {
  margin-bottom: 8px;
}

.language-switcher {
  width: 157px;
}
@media (max-width: 899px) {
  .language-switcher {
    width: 100px;
  }
}
.language-switcher select {
  width: 80px;
  height: 40px;
  background-color: #EFF1F1;
  border: none;
}
@media (max-width: 899px) {
  .language-switcher {
    display: flex;
    justify-content: flex-end;
  }
}
.language-switcher .language-select {
  width: 80px;
  height: 80px;
  background-color: #EFF1F1;
  border: none;
}
.language-switcher .language-select .ss-values {
  justify-content: center;
}
.language-switcher .language-select .ss-values .ss-single {
  font-size: 14px;
  color: #000;
  font-weight: 700;
}
.language-switcher .language-select .ss-arrow {
  position: absolute;
  bottom: 14px;
  left: calc(50% + 1px);
  transform: translateX(-50%);
  text-align: center;
  margin: 0;
  width: 9px;
  height: 9px;
}
.language-switcher .ss-main:focus {
  box-shadow: none;
}
.language-switcher .ss-option {
  text-align: center;
}

.language-select .ss-option {
  text-align: center;
  font-size: 14px;
  color: #000 !important;
}
.language-select .ss-option:hover {
  color: #FFF !important;
}
.language-select .ss-option.ss-selected {
  color: #FFF !important;
}
.language-select .ss-list {
  background-color: #EFF1F1;
}

.box-link-button {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.privacy-policy {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 120px;
  padding: 48px 24px 0;
}/*# sourceMappingURL=style.css.map */