.bp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.bp-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.bp-modal-title {
    font-size: 1.3em;
    font-weight: 600;
}

.bp-modal-close {
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.bp-modal-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bp-modal-submit-btn {
    width: 100%;
}

/* Дополнение к модальному окну (СМС верификация) */

.bp-modal-content-sms {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.bp-modal-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.bp-sms-timer-block {
    text-align: right;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.bp-link-action {
    color: var(--site-color);
    cursor: pointer;
    text-decoration: underline;
}

.bp-error-msg {
    color: #f44336;
    font-size: 12px;
    margin-bottom: 10px;
}

.bp-modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.bp-phone-change-wrap {
    text-align: right;
    margin-bottom: 15px;
}

/* Утилиты для скрытия/показа */
.bp-d-none {
    display: none !important;
}

.bp-d-flex {
    display: flex !important;
}

.bp-d-block {
    display: block !important;
}