@charset "UTF-8";
/* Указываем box sizing */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  background: #fff;
}

._container {
  position: relative;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
  width: 100%;
}

.login {
  position: relative;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login::after {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, #e6ebf4 10%, rgba(230, 235, 244, 0.85) 42.66%, rgba(230, 235, 244, 0.6) 73.29%, rgba(230, 235, 244, 0) 100%);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.login__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 5;
  max-height: 650px;
  flex: 1;
  gap: 20px;
}
@media (max-width: 991px) {
  .login__container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
.login__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.login__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.login__content {
  display: flex;
  flex-direction: column;
  max-width: 470px;
  height: 100%;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991px) {
  .login__content {
    justify-content: flex-start;
    align-items: center;
    height: auto;
  }
}
.login__content img {
  width: 100%;
}
@media (max-width: 991px) {
  .login__content img {
    max-width: 260px;
  }
}
.login__content p {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 31px;
  line-height: 120%;
  color: #27293b;
}
@media (max-width: 991px) {
  .login__content p {
    font-size: 24px;
  }
}
.login__form {
  max-width: 570px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(217, 217, 217, 0.05);
  box-shadow: 0px 22px 100px rgba(100, 108, 251, 0.25);
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  border-radius: 13px;
  position: relative;
  padding: 2px;
}
.login__form::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #5f6ffc 0%, #f40be7 100%);
  border-radius: inherit;
  padding: 2px;
  mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
}
.login__form-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  background: rgba(217, 217, 217, 0.05);
  width: calc(100% - 1px);
  padding: 50px;
  height: calc(100% - 1px);
  border-radius: 20px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .login__form-content {
    padding: 25px;
  }
}
.login__form-logo {
  max-width: 200px;
  width: 100%;
}
.login form {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 20px;
}
.login form button {
  outline: none;
  border: none;
  display: flex;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 25px;
  gap: 20px;
  width: 100%;
  background: linear-gradient(90deg, #5f6ffc 0%, #f40be7 100%);
  border-radius: 5px;
}
.login form button span {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #ffffff;
}
.login__languages {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 80%;
}
.login__languages a {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #767676;
  text-decoration: none;
  position: relative;
}
.login__languages a::after {
  background: linear-gradient(90deg, #5f6ffc 0%, #f40be7 100%);
  content: "";
  height: 1px;
  box-sizing: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
}
.login__languages a:hover::after {
  display: block;
}
.login__field {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px 10px;
  gap: 10px;
  position: relative;
}
.login__field::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #5f6ffc 0%, #f40be7 100%);
  border-radius: inherit;
  padding: 1px;
  mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
}
.login__field input {
  background: transparent;
  flex: 1;
  outline: none;
  border: none;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #767676;
}
.login__field svg {
  flex-shrink: 0;
}
.login__remember {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.login__remember p {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #767676;
}
.login__remember-field {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.login__remember-field input {
  display: none;
}
.login__checkmark {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  background: rgba(22, 22, 20, 0.6);
  border: 1px solid #343937;
  border-radius: 50%;
  position: relative;
  transition: background 0.3s, box-shadow 0.3s;
}

.pass-icon {
  display: none;
}
.pass-icon.active {
  display: block;
}

#pass-btn {
  cursor: pointer;
}

.login__remember-field input:checked + .login__checkmark {
  background-color: #4caf50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.login__remember-field input:checked + .login__checkmark::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login__remember-field:hover .login__checkmark {
  background-color: #b0b0b0;
}/*# sourceMappingURL=styles.css.map */