@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

body {
    background: #F5F6F8;
}

.header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 20px;
}

.header__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background: #FFFFFF;
    -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
            box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
}

.header__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: 40px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.header__item-logo {
    width: auto;
    max-height: 40px;
    margin-right: 12px;
}

.header__item-title {
    font-style: normal;
    font-weight: 700;
}

.container {
    max-width: 1340px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
    margin: 0 auto;
}

.content__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    gap: 20px;
}

.content__left {
    width: 66.66%;
    height: auto;
    background: #FFFFFF;
    border-radius: 20px;
    -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
            box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    position: relative;
    padding: 20px;
    /* max-height: 526px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.content__right {
    width: 33.33%;
    height: auto;
    background: #FFFFFF;
    border-radius: 20px;
    -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
            box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    padding: 40px;
}

.content__left-map {
    height: 100%;
    width: 100%;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 514px;
}

.content__left-title {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
    color: #363739;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 100% */
    text-transform: uppercase;
}

.content__right-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

#form__login,#form__auth {
    margin-bottom: 20px;
}

.right__form-title {
    color: #363739;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 100% */
    text-align: center;
    margin-bottom: 20px;
}

.right__form-subtitle {
    color: #A7A9A8;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 100% */
    text-align: center;
    margin-bottom: 20px;
}

.form__login-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.form__login-item-title {
    color: #363739;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 100% */
    margin-bottom: 8px;
}

.form__login-item-title span {
    color: #F00;
}

.form__item-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    width: 100%;
    padding: 12px 16px;
    -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
            box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    border-radius: 24px;
}

.form__item-block-ico {
    height: 24px;
    margin-right: 16px;
}

.form__item-block-input {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    color: #363739;
}

.form__item-block-input::-webkit-input-placeholder {
    color: #A7A9A8;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.form__item-block-input::-moz-placeholder {
    color: #A7A9A8;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.form__item-block-input:-ms-input-placeholder {
    color: #A7A9A8;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.form__item-block-input::-ms-input-placeholder {
    color: #A7A9A8;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.form__item-block-input::placeholder {
    color: #A7A9A8;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.form__item-block-ico-eye-viewing {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 12px;
}

.form__item-block-ico-eye {
    margin-right: 0;
    
}

.form__login-submit {
    margin-top: 20px;
    border-radius: 24px;
    background: #4D7FFF;
    width: 100%;
    padding: 12px 20px;
    border: none;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
            box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    
}

.form__login-submit:hover {
    background: #3A66CC;
    
}

.right__form-registration {
    text-decoration: none;
    color: #4D7FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding: 12px 20px;
    width: 100%;
    border-radius: 24px;
    border: 2px solid #4D7FFF;
    background: #F5F6F8;
    -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
            box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    text-align: center;
    margin-bottom: 20px;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.right__form-registration:hover {
    background: #ffffff;
    /* color: #fff; */
}

.right__form-recover {
    color: #4D7FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
}

.form__item-block-ico-down-list {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 12px;
}

.form__item-block-ico-down {
    margin-right: 0;
    
}

.dropdown_panel{
  position: absolute;      /* НЕ участвует в потоке — блок не «распухает» */
  left: 0;                 /* координаты выставим из JS под конкретный .form__item-block */
  top: 0;
  width: 100%;
  margin: 0;
  padding: 8px 0;
  background: #fff;
  /* border: 1px solid #ECEFF5; */
  border-radius: 12px;
  -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
          box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.dropdown_panel[hidden]{ display: none !important; }

.dropdown_panel li{
  list-style: none;
  padding: 10px 14px;
  cursor: pointer;
  line-height: 1.35;
}
.dropdown_panel li + li{ border-top: 1px solid #EEF1F6; }
.dropdown_panel li:hover{ background: #F4F7FF; }