.popup-window.popup-window-with-titlebar#loginPopup{
    width: 400px;
}
.loginPopup_info{
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 24px;
}
#loginPopup .el-form-input{
    margin-bottom: 20px;
    height: 42px;
    padding: 0 12px;
}
#loginPopup .el-checkbox-label{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
#loginPopup .el-checkbox{
    margin-top: 4px;
    margin-bottom: 24px;
}
#loginPopup .loginPopup_message {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: left;
}
.loginPopup_message.loginPopup_error {
    color: red;
}
.loginPopup_message.loginPopup_success {
    color: #82E88C;
}
.loginPopup_links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.loginPopup_links--mobile{
    display: none;
}
.loginPopup_links a {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--blue-link);
    transition: 0.2s all linear;
    border-bottom: 1px solid transparent;
}
.loginPopup_links a:hover {
    border-bottom: 1px solid var(--blue-link);
    color: var(--blue-link);
}
#loginPopup .popup-window-titlebar-text {
    margin-top: 0;
    margin-bottom: 24px;
    border: none;
    font-size: 20px;
    color: var(--main_text_black);
}
#loginPopup .popup-window-content {
    margin-bottom: 0;
}
#loginPopup .button {
    margin-top: 40px;
}
@media(max-width: 576px){
    .popup-window.popup-window-with-titlebar#loginPopup{
        width: 100%;
        left: 0 !important;
        top: 0 !important;
        position: fixed !important;
        height: 100%;
        border-radius: 0;
        padding: 60px 16px 16px;
        animation: none;
    }
    #loginPopup button{
        height: 46px;
    }
    #loginPopup .popup-window-titlebar-close-icon.popup-window-close-icon{
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
    }
    #loginPopup  .popup-window-close-icon:after{
        width: 24px;
        height: 24px;
    }
    #loginPopup .popup-window-titlebar-text{
        font-size: 20px;
        margin-bottom: 16px;
    }
    .loginPopup_info{
        margin: 0 auto 24px;
        max-width: 300px;
    }
    .loginPopup_links:not(.loginPopup_links--mobile){
        display: none;
    }
    .loginPopup_links--mobile{
        display: flex;
    }
    .loginPopup_links--mobile:last-child{
        justify-content: center;
    }
    #loginPopup .el-checkbox{
        margin-top: 24px;
        margin-bottom: 32px;
    }
    #loginPopup .el-form-input{
        margin-bottom: 24px;
        padding: 0 24px;
        height: 50px;
    }
    #loginPopup .button{
        margin-top: 0;
        height: 50px;
        font-size: 14px;
        margin-bottom: 24px;
    }
}