:root {
  --white: #fff;
  --Blue: #079FF5;
  --Dark: #011320;
}

html {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

input {
  border: none;
}

input,
button {
  font-family: "Inter", sans-serif;
}

button,
input[type=submit] {
  cursor: pointer;
  border: none;
  outline: none;
}

textarea {
  font-family: "Inter", sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: var(--Dark);
  background-color: rgba(137, 137, 137, 0.05);
  background-position: top center;
  background-repeat: no-repeat;
  font-weight: normal;
}

iframe {
  border: none;
}

.flex {
  display: flex;
}

.flex-c {
  display: flex;
  align-items: center;
}

.flex-c-j {
  display: flex;
  align-items: center;
  justify-content: center;
}

h1, h2, h3, h4, h5, p, ul {
  padding: 0;
  margin: 0;
}

button, input[type=submit] {
  cursor: pointer;
}

.list-reset {
  list-style: none;
}

.container {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
  justify-content: center;
  flex-direction: column;
}

.main-title {
  color: var(--Blue);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.eot");
  src: local("Inter Regular"), local("Inter-Regular"), url("../fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff"), url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.eot");
  src: local("Inter Bold"), local("Inter-Bold"), url("../fonts/Inter-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff"), url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.eot");
  src: local("Inter Semi Bold"), local("Inter-SemiBold"), url("../fonts/Inter-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff"), url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
.bg {
  max-width: 50%;
  width: 100%;
  background-image: url("../images/bg.jpg");
  background-size: cover;
}
.bg__wrapp {
  padding: 10% 0;
  width: 100%;
  height: 100vh;
  justify-content: center;
  flex-direction: column;
}

.right {
  max-width: 50%;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.alert-success {
  margin-bottom: 20px;
  width: 100%;
  padding: 10px 20px;
  color: #51BE55;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #51BE55;
  background-color: #E3FFE4;
}

.alert-success svg {
  margin-right: 8px;
  flex-shrink: 0;
}

.alert__item {
  margin-bottom: 8px;
  color: #E32338;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.alert__item:last-child {
  margin-bottom: 0;
}

.alert-danger {
  width: 100%;
  padding: 10px 20px;
  background-color: rgba(227, 35, 56, 0.2);
  margin-bottom: 20px;
}

.alert__item svg {
  margin-right: 5px;
}

.logo {
  font-size: 0;
  line-height: 0;
  margin: 0 auto;
}

.copyright {
  margin-top: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.form {
  position: relative;
  flex-direction: column;
  max-width: 580px;
  width: 100%;
  padding: 40px;
  border-radius: 5px;
  background-color: #FFF;
  box-shadow: 0px 0px 6px 0px #CDCDCD;
}
.form__title {
  margin-bottom: 40px;
  color: var(--Blue);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.form__item {
  width: 100%;
  margin-bottom: 28px;
}
.form__label {
  display: block;
  margin-bottom: 16px;
  width: 100%;
  font-size: 16px;
}
.form__input {
  padding-left: 15px;
  width: 100%;
  height: 40px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid rgba(1, 19, 32, 0.2);
  background-color: #fff;
  outline: none;
}
.form__action {
  margin-top: 12px;
  margin-bottom: 24px;
}
.form__action__item:not(:last-child) {
  margin-right: 22px;
}
.form__forgetr {
  color: var(--Blue);
  font-size: 14px;
  transition: color 0.4s ease-in-out;
}
.form__forgetr:hover {
  color: var(--Dark);
}
.form__btn {
  padding: 14px 60px;
  border-radius: 5px;
  font-size: 16px;
}
.form__reg {
  border: 1px solid var(--Blue);
  color: var(--Blue);
  transition: background-color 0.4s ease-in-out;
}
.form__reg:hover {
  color: #fff;
  background-color: #008CDC;
}
.form__submit {
  color: var(--white);
  background-color: var(--Blue);
  transition: background-color 0.4s ease-in-out;
}
.form__submit:hover {
  background-color: #008CDC;
}


.phonediv {
  position: relative;
}
.phonediv__nums {
  width: 152px;
}
.phonediv__head {
  height: 40px;
  margin-left: 6px;
  padding: 0px 14px;
  font-size: 16px;
  line-height: 1;
  color: #898989;
  background-color: #F9F9F9;
  border: 1px solid rgba(1, 19, 32, 0.2);
  border-right: none;
  border-radius: 5px 0 0 5px;
  flex-shrink: 0;
  cursor: pointer;
}
.phonediv__arrow {
  margin-left: 6px;
  flex-shrink: 0;
}
.phonediv__head img {
  margin-right: 6px;
  width: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.phonediv .form__input {
  border-radius: 0 5px 5px 0;
}
.phonediv__list {
  position: absolute;
  top: calc(100% + 7px);
  width: 107px;
  left: 3px;
  max-height: 200px;
  overflow: auto;
  background-color: var(--white);
  filter: drop-shadow(0px 0px 6px rgba(205, 205, 205, 0.25));
  transform: scale(0);
  pointer-events: none;
  transition: transform 0.4s ease-in-out;
  /* ползунок скроллбара */
}
.phonediv__list_active {
  transform: scale(1);
  pointer-events: all;
}
.phonediv__list::-webkit-scrollbar {
  width: 4px; /* ширина для вертикального скролла */
  height: 8px; /* высота для горизонтального скролла */
  background-color: #F9F9F9;
}
.phonediv__list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 9em;
}
.phonediv__list::-webkit-scrollbar-thumb:hover {
  background-color: var(--Blue);
}
.phonediv__item {
  padding: 8px 14px;
  font-size: 16px;
  line-height: 1;
  color: #898989;
  transition: background-color 0.4s ease-in-out;
  cursor: pointer;
}
.phonediv__item:hover {
  background-color: #F9F9F9;
}
.phonediv__item img {
  margin-right: 6px;
  width: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.phonediv__item:not(:last-child) {
  border-bottom: 1px #F9F9F9 solid;
}


.balls {
  width: 100%;
  position: relative;
  z-index: 1;
  top: 112px;
  left: -598px;
  pointer-events: none;
}

.ball_01 {
  position: absolute;
  top: 100px;
  right: -120px;
}

.ball_02 {
  position: absolute;
  top: 99px;
  right: 670px;
}

.ball_03 {
  position: absolute;
  top: 20px;
  right: -53px;
}

.ball_04 {
  position: absolute;
  top: 583px;
  right: 330px;
}

.language__header {
  margin-left: auto;
}


.language {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
}
.language::after {
  content: "";
  display: block;
  height: 12px;
  width: 100px;
}
.language__body {
  position: absolute;
  top: 100%;
  right: 0;
  width: 114px;
  padding: 16px 12px;
  border-radius: 5px;
  background-color: var(--white);
  box-shadow: 0px 0px 6px 0px #CDCDCD;
  transform: scale(0);
  pointer-events: none;
  transition: transform 0.4s ease-in-out;
}
.language__item:not(:last-child) {
  margin-bottom: 16px;
}
.language__href {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  transition: color 0.4s ease-in-out;
  cursor: pointer;
}
.language__href img {
  margin-right: 12px;
}
.language__href:hover {
  color: var(--Blue);
}
.language:hover .language__body {
  transform: scale(1);
  pointer-events: all;
}
.toppanel__btn {
  width: 52px;
  height: 52px;
  font-size: 0;
  line-height: 0;
  background-color: var(--Blue);
  border-radius: 10px;
  transition: background-color 0.4s ease-in-out;
}
.toppanel__btn:hover {
  background-color: var(--Dark);
}

@media screen and (max-width: 850px) {
  .toppanel__btn {
    width: 28px;
    height: 28px;
  }
  .toppanel__btn  img {
    height: 18px;
  }
  .balls {
    display: none;
  }
  #app {
    flex-direction: column;
  }
  .bg {
    max-width: 100%;
  }
  .logo img {
    height: 40px;
  }
  .form {
    width: 580px;
  }
  .right {
    max-width: 100%;
    margin: auto 0;
  }
  .bg__wrapp {
    padding: 60px 0;
  }
}
@media screen and (max-width: 500px) {
  .form__item {
    margin-bottom: 14px;
  }
  .form__label {
    margin-bottom: 6px;
  }
  .form__action {
    width: 100%;
  }
  .phonediv__list {
    width: calc(100% - 10px);
}
  .bg__wrapp {
    height: auto;
  }
  .bg {
    background-image: url("../images/bg_mob.jpg");
    background-position: top;
  }
  .form {
    width: calc(100% - 30px);
  }
  .form__action {
    flex-direction: column;
  }
  .form__action__item:not(:last-child) {
    margin: 0;
    margin-bottom: 10px;
  }
  .right {
    margin-top: 30px;
  }
  .form__action__item {
    width: 100%;
  }
  .form__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .copyright {
    margin-top: 263px;
  }
}/*# sourceMappingURL=style.css.map */

