@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: local('Inter-Regular'),
    url('../fonts/Inter-Regular.woff') format('woff'),
    url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: local('Inter-SemiBold'),
    url('../fonts/Inter-SemiBold.woff') format('woff'),
    url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: local('Inter-Bold'),
    url('../fonts/Inter-Bold.woff') format('woff'),
    url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

html {
    box-sizing: border-box;
}

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

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

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

button {
    appearance: none;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

a,
img,
button,
input,
textarea {
    outline: transparent;
}

body{
    color: #262626;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    background: #012789;
}

.header{
    padding: 16px 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
}

.header__link{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
}

.header__link-text{
    color: #465176;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.header__btn{
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #E6EDFA;
}

.header__btn-text{
    color: #262626;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.form{
    display: none;
    margin: 100px auto 0;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    background:  #F1F4FA;
}

.form.active{
    display: block;
}

.form__title{
    margin-bottom: 40px;
    color: #262626;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.form__subtitle{
    margin-bottom: 40px;
    color: #465176;
    font-size: 16px;
    line-height: 26px;
}

.form__list{
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form__list--partner:not(:last-child){
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(50, 103, 210, 0.2);
}

.form__item{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form__label{
    color: #262626;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.form__label span{
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.form__item-wrapper{
    position: relative;
}

.form__input{
    padding: 12px 26px 12px 12px;
    width: 100%;
    color: #262626;
    font-size: 16px;
    line-height: 26px;
    border: 1px solid #7095E0;
    border-radius: 12px;
    background: #FFF;
}

.form__input:hover{
    padding: 11px 26px 11px 12px;
    border: 2px solid #7095E0;

}

.form__input:focus,
.form__input:active{
    border: 1px solid #0848C9;
}

.form__input:focus:hover{
    padding: 12px 26px 12px 12px;
}

.form__item-wrapper.error .form__input{
    border: 1px solid #D91010;
}

.form__input::placeholder{
    color: #818181;
}

.form__input-icon{
    position: absolute;
    display: none;
    right: 12px;
    top: 30%;
}

.form__input-icon--hide{
    display: block;
}

.form__input-icon--hide.active{
    display: none;
}

.form__input-icon--show.active{
    display: block;
}

.form__item-wrapper.error .form__input-icon--error{
    display: block;
}

.form__item-wrapper.error .form__input-icon--hide,
.form__item-wrapper.error .form__input-icon--show{
    display: none;
}

.animation_error{
    box-shadow: 0 0 35px red;
    animation: wiggle 2s normal;
}

@keyframes wiggle {
    0% { transform: rotate(0deg); }
    80% { transform: rotate(0deg); }
    85% { transform: rotate(5deg); }
    95% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.form__text-error{
    display: none;
    color: #D91010;
    font-size: 16px;
    line-height: normal;
}

.form__text-error.active{
    display: block;
}

.form__btn{
    margin: 0 auto 26px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 12px;
    background: #0848C9;
    box-shadow: 2px 2px 6px 0 rgba(64, 64, 64, 0.22);
}

.change__form .form__btn{
    margin: 0 auto;
}

.from__help{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form__help-btn{
    color: #262626;
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: underline;
}

.form__help-btn.forgot{
    color: #7095E0;
    text-align: start;
}

.form__item-text{
    color: #465176;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.select-wrapper{
    width: 100%;
    position: relative;
}

.select-list{
    max-height: 300px;
    overflow-x: auto;
    display: none;
    position: absolute;
    left: 0;
    top: 57px;
    z-index: 1;
    width: 100%;
    padding: 10px 0;
    border-radius: 12px;
    border: 1px solid #7095E0;
    background: #FFF;
}

.select-list {
    scrollbar-width: thin;
    scrollbar-color: #7095E0 #FFF;
}

.select-list::-webkit-scrollbar {
    width: 15px; /* Ширина всего элемента навигации */
}

.select-list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 20px;
}

.select-list::-webkit-scrollbar-thumb {
    background-color: #7095E0;
    border-radius: 20px;
    border: none;
}

.select-wrapper--active .select-list{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.select-list__item{
    width: 100%;
    color: #262626;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    cursor: pointer;
    padding: 8px 11px;
}

.select-list__item--active,
.select-list__item:hover{
    background: #E6EDFA;
}

.select-button__img{
    transition: all .3s;
}

.select-wrapper--active .select-button__img{
    transform: rotate(180deg);
}

.select-button{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
    padding: 12px 12px 10px 12px;
    gap: 8px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #7095E0;
    background: #FFF;
}

.select-button:hover{
    border: 2px solid #7095E0;
    padding: 11px 11px 9px 11px;
}

.select-button__content span{
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: 26px;
    font-weight: bold;
}

.select-button__placeholder{
    color: #818181;
}

.select-button__text{
    display: none;
    color: #000;
}



