@charset "UTF-8";
@font-face {
  font-family: "Cabin SemiCondensed";
  src: url("../src/assets/fonts/CabinSemiCondensed-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Arimo";
  src: url("../src/assets/fonts/Arimo-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../src/assets/fonts/Quicksand-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Red Hat Display";
  src: url("../src/assets/fonts/RedHatDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../src/assets/fonts/Mulish-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../src/assets/fonts/Mulish-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../src/assets/fonts/Sora-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabin SemiCondensed";
  src: url("../src/assets/fonts/CabinSemiCondensed-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../src/assets/fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Red Hat Display";
  src: url("../src/assets/fonts/RedHatDisplay-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Momo Trust Display";
  src: url("../src/assets/fonts/MomoTrustDisplay-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

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

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

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* вместо устаревшего импорта */
:root {
  --font-family-logo: "Sora", sans-serif;
  --font-family-button: "Momo Trust Display", sans-serif;
  --font-family-text-simple: "Arimo", sans-serif;
  --font-family-text-simple-alternate: "Mulish", sans-serif;
  --font-family-button-alternate: "Quicksand", sans-serif;
  --font-family-text-technical: "Cabin SemiCondensed", sans-serif;
  --font-family-text-title: "Red Hat Display", sans-serif;
  --font-family-nick_n_subts: "Montserrat", sans-serif;
  --color-black: #000000;
  --color-black-alternate: #1E1E1E;
  --color-grey-dark: #79747E;
  --color-grey: #B3B3B3;
  --color-grey-light: #D9D9D9;
  --color-grey-light-alternate: #EDEDED;
  --color-white: #FFFFFF;
  --color-purple: #6200D9;
  --color-purple-alternate: #8E5ACD;
  --border-radius-big: 70px;
  --border-radius-small: 15px;
  --box-shadow-big: 0 4px 4px 0;
  --box-shadow-small: 0 2px 2px 0;
  --border: 1px solid var(--color-purple);
  --scale-hover: 1.05;
  --scale-active: 0.9;
  --transition-duration: 0.08s;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.button {
  border: 0;
  background-color: transparent;
  padding: 0;
}

.a-link {
  text-decoration: none;
  color: var(--color-black);
}

.user-image {
  clip-path: circle(50%);
  width: 50px;
  height: 50px;
  margin-top: 13px;
  background: url("../src/assets/icons/user-icon.svg") center/contain no-repeat;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  border: 1.5px var(--color-purple) solid;
  border-radius: 50%;
}

body {
  background-color: var(--color-purple);
  height: 100vh;
  overflow: hidden;
}

.logo-image {
  margin-top: 247px;
  margin-left: 479px;
  margin-bottom: 136px;
  width: 962px;
  height: 223px;
}

.logo-image-login {
  margin-top: 183px;
  margin-left: 479px;
  margin-bottom: 134px;
  width: 962px;
  height: 223px;
}

.join-button {
  background-color: var(--color-white);
  width: 447px;
  height: 90px;
  border-radius: 70px;
  margin-left: 737px;
  -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  color: var(--color-purple);
  font-family: var(--font-family-button);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
}

@media (hover: hover) {
  .join-button:hover {
    scale: var(--scale-hover);
  }
}
.join-button:active {
  scale: var(--scale-active);
}

.sign-in-button {
  background-color: var(--color-white);
  width: 184px;
  height: 56px;
  border-radius: 70px;
  margin-left: 868px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  color: var(--color-purple);
  font-family: var(--font-family-button);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}

@media (hover: hover) {
  .sign-in-button:hover {
    scale: var(--scale-hover);
  }
}
.sign-in-button:active {
  scale: var(--scale-active);
}

.user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 134px;
  row-gap: 27px;
}

.user-id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  translate: -20px 0;
}

.user-id-label {
  font-family: var(--font-family-button-alternate);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
}

.password-label {
  font-family: var(--font-family-button-alternate);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
}

.password-input {
  width: 242px;
  height: 37px;
  border-radius: 15px;
  border: 0;
  padding-inline: 9px;
  -webkit-box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25) inset;
  font-family: var(--font-family-text-simple-alternate);
  font-size: 22px;
  font-weight: 500;
  -ms-user-select: element;
      user-select: contain;
  outline: 0;
}

.user-id-input {
  width: 242px;
  height: 37px;
  border-radius: 15px;
  border: 0;
  padding-inline: 9px;
  -webkit-box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25) inset;
  font-family: var(--font-family-text-simple-alternate);
  font-size: 22px;
  font-weight: 500;
  -ms-user-select: element;
      user-select: contain;
  outline: 0;
}