.call-popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.call-popup-form.active {
    display: flex;
}

.call-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.call-popup__container {
    position: relative;
    max-width: 560px;
    width: 90%;
    background: var(--color-white);
    border-radius: 10px;
    padding: 50px;
    z-index: 10001;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
}

.call-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 15px;
    height: 15px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.call-popup__close img {
    width: 100%;
    height: 100%;
}

.call-popup__close:hover {
    opacity: 0.6;
}



.call-popup__view.active {
    display: block;
}

.call-popup__title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 40px;
    margin-top: 15px;
    text-transform: uppercase;
}

.call-popup__subtitle {
    font-size: 15px;
    text-align: center;
    color: var(--color-text-gray);
    margin-bottom: 20px;
}

.call-popup__success, .call-popup__error {
	padding-bottom: 10px;
}

.call-popup__error {
	color: red;
}

.call-popup__form {
    display: flex;
    flex-direction: column;
}

.call-popup__input {
    width: 100%;
    height: 55px;
    padding: 0 25px;
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid #949494;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 10px;
}

.call-popup__input::placeholder {
    color: #949494;
}

.call-popup__input:focus {
    border-color: var(--color-text);
}

.call-popup__password-field {
    position: relative;
}

.call-popup__password-toggle {
    position: absolute;
    right: 15px;
    top: 43%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 18px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.call-popup__password-toggle:hover {
    opacity: 0.6;
}

.call-popup__password-toggle img {
    width: 100%;
    height: 100%;
}

.call-popup__forgot-wrapper {
    text-align: right;
    margin-bottom: 30px;
}

.call-popup__forgot-link {
    font-size: 15px;
    color: var(--color-text-gray);
    text-decoration: none;
    border-bottom: 1px dotted var(--color-text-gray);
    transition: all 0.3s ease;
    display: inline-block;
}

.call-popup__forgot-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.call-popup__button {
    width: 100%;
    height: 50px;
    background: var(--color-primary);
    border: none;
    border-radius: 10px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-popup__button:hover {
    background: #D12E00;
}

.call-popup__button:active {
    background: #B02800;
}

.call-popup__social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.call-popup__social-button {
    height: 50px;
    background: var(--color-white);
    border: 1px solid #949494;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.call-popup__social-button:hover {
    border-color: var(--color-text);
}

.call-popup__social-button img {
    height: 29px;
    width: 60px;
}

.call-popup__login-link {
    margin-top: 10px;
}

.call-popup__register-link,
.call-popup__login-link {
	padding-top: 15px;
    text-align: center;
    font-size: 15px;
    color: var(--color-text-gray);
}

.call-popup__register-link a,
.call-popup__login-link a {
    color: var(--color-text-gray);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.call-popup__register-link a:hover,
.call-popup__login-link a:hover {
    color: var(--color-primary);
}

.call-popup__tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #AAAAAA;
}

.call-popup__tab {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #AAAAAA;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.call-popup__tab.active {
    color: var(--color-text);
}

.call-popup__tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-text);
}

.call-popup__tab:hover:not(.active) {
    color: var(--color-text);
    border: 2px;
}

.call-popup__tab-content {
    display: none;
}

.call-popup__tab-content.active {
    display: flex;
}

.call-popup__checkbox {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 30px;
}

.call-popup__checkbox:first-of-type {
    margin-top: 30px;
}

.call-popup__checkbox:last-of-type {
    margin-bottom: 40px;
}

.call-popup__checkbox-input {
    display: none;
}

.call-popup__checkbox-custom {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: 1px solid #949494;
    border-radius: 5px;
    background: var(--color-white);
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.call-popup__checkbox-input:checked + .call-popup__checkbox-custom {
    background: var(--color-white);
    border-color: #2A2A2A;
    border-width: 1.5px;
}

.call-popup__checkbox-input:checked + .call-popup__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 10px;
    background-image: url('images/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.call-popup__checkbox-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.4;
}

.call-popup__link {
    color: var(--color-text);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.call-popup__link:hover {
    color: var(--color-primary);
}

.call-popup__info {
    font-size: 15px;
    color: var(--color-text-gray);
    margin-bottom: 40px;
    margin-top: 10px;
    text-align: center;
}

/* Адаптив */
@media (max-width: 768px) {
    .call-popup__container {
        max-width: 100%;
        width: calc(100% - 20px);
        padding: 30px 20px;
        margin: 10px;
    }

    .call-popup__title {
        font-size: 12px;
        margin-bottom: 30px;
        margin-top: 10px;
    }

    .call-popup__subtitle {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .call-popup__input {
        height: 35px;
        font-size: 10px;
        padding: 0 12px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .call-popup__password-toggle {
        right: 12px;
        top: 40%;
        width: 14px;
        height: 10px;
    }

    .call-popup__forgot-wrapper {
        margin-bottom: 30px;
    }

    .call-popup__forgot-link {
        font-size: 10px;
    }

    .call-popup__button {
        height: 30px;
        font-size: 12px;
        border-radius: 5px;
    }

    .call-popup__social {
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .call-popup__social-button {
        height: 30px;
        border-radius: 5px;
    }

    .call-popup__social-button img {
        height: 18px;
    }

    .call-popup__register-link,
    .call-popup__login-link {
        font-size: 10px;
    }

    .call-popup__tabs {
        margin-bottom: 24px;
    }

    .call-popup__tab {
        padding: 5px 15px;
        font-size: 12px;
    }

    .call-popup__checkbox {
        gap: 15px;
        margin-bottom: 24px;
    }

    .call-popup__checkbox:first-of-type {
        margin-top: 10px;
    }

    .call-popup__checkbox:last-of-type {
        margin-bottom: 20px;
    }

    .call-popup__checkbox-custom {
        width: 20px;
        height: 20px;
        border-radius: 5px;
    }

    .call-popup__checkbox-input:checked + .call-popup__checkbox-custom::after {
        width: 10px;
        height: 8px;
    }

    .call-popup__checkbox-text {
        font-size: 10px;
    }

    .call-popup__info {
        font-size: 10px;
        margin-bottom: 20px;
        margin-top: 0;
    }
}

.form-input-label{
        font-size: 14px;
    color: #6b6b6b;
    padding-bottom: 15px;
}
.form-politic{margin: 15px 0;}
.form-politic>div{
margin-bottom:10px;
display: flex;
    gap: 10px;
    align-items: center;
}