*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
}

body {
  position: relative;
  font-family: 'Montserrat';
}

html {
  height: 100%;
}

.container {
  max-width: 1200px;
  width: 100%;
  display: inherit;
  -webkit-box-pack: inherit;
      -ms-flex-pack: inherit;
          justify-content: inherit;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  margin: auto;
  padding: 0 20px;
}

#sticky {
  position: fixed;
  width: 100%;
  bottom: 0;
  border-radius: 0px;
  z-index: 10;
}

body[lang] {
  background-color: #ebedf5;
}

body[lang] .button {
  font-family: 'Montserrat';
  background-color: #153885;
  border-radius: 40px;
  padding: 12px 92px;
  border: none;
  color: #fff;
  font-size: 18px;
  margin-top: 25px;
  cursor: pointer;
  -webkit-transition: background-color 130ms ease-in-out;
  transition: background-color 130ms ease-in-out;
}

body[lang] .button:hover {
  background-color: #1f4eb3;
}

body[lang] .main {
  background: url(./main_bg_1920.png) no-repeat center top;
  padding: 30px 0;
}

body[lang] .form {
  text-align: center;
  border-radius: 13px;
  padding: 40px;
}

body[lang] .form__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #363436;
  font-size: 31px;
}

body[lang] .form__login {
  padding-top: 10px;
  color: #3e3d40;
}

body[lang] .form__login a {
  color: #3e3d40;
  font-weight: bolder;
}

body[lang] .form .rows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  text-align: start;
  gap: 35px 30px;
  padding-top: 35px;
}

body[lang] .form .rows input,
body[lang] .form .rows select {
  font-family: 'Montserrat';
  width: 100%;
  font-size: 16px;
  height: 44px;
  border: 1px solid #2563eb4d;
  background-color: #ffffff;
  padding: 0px 16px;
  color: #535353;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  /* Firefox 1-3.6 */
  border-radius: 40px;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
}

body[lang] .form .rows input::-webkit-input-placeholder,
body[lang] .form .rows select::-webkit-input-placeholder {
  color: #535353;
}

body[lang] .form .rows input:-ms-input-placeholder,
body[lang] .form .rows select:-ms-input-placeholder {
  color: #535353;
}

body[lang] .form .rows input::-ms-input-placeholder,
body[lang] .form .rows select::-ms-input-placeholder {
  color: #535353;
}

body[lang] .form .rows input::placeholder,
body[lang] .form .rows select::placeholder {
  color: #535353;
}

body[lang] .form .rows input:focus,
body[lang] .form .rows select:focus {
  outline: none;
  border: 2px solid #374861;
  color: #374861;
}

body[lang] .form .rows input:focus::-webkit-input-placeholder,
body[lang] .form .rows select:focus::-webkit-input-placeholder {
  color: #374861;
}

body[lang] .form .rows input:focus:-ms-input-placeholder,
body[lang] .form .rows select:focus:-ms-input-placeholder {
  color: #374861;
}

body[lang] .form .rows input:focus::-ms-input-placeholder,
body[lang] .form .rows select:focus::-ms-input-placeholder {
  color: #374861;
}

body[lang] .form .rows input:focus::placeholder,
body[lang] .form .rows select:focus::placeholder {
  color: #374861;
}

body[lang] .form .rows input[type='radio'],
body[lang] .form .rows input[type='checkbox'] {
  width: 17px;
  height: 17px;
  accent-color: #153885;
}

body[lang] .form .rows #divBday {
  margin-top: -20px;
}

body[lang] .form #gdpr {
  margin-top: 25px;
}

body[lang] .form #gdpr .anchor {
  color: #3e3d40;
  font-weight: bolder;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 768px;
  }
  body[lang] .form .rows {
    gap: 30px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: none;
  }
  body[lang] .form {
    padding: 0;
    gap: 30px;
  }
  body[lang] .form__title {
    font-size: 25px;
    padding-top: 30px;
  }
  body[lang] .form .rows {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 26px 0;
  }
}
/*# sourceMappingURL=style.css.map */