.pm-bis-notification {
    margin: 18px 0 0;
    padding: 20px;
    background: #f4fbff;
    border: 1px solid #d9edf8;
    border-radius: 10px;
    color: #27333d;
    box-shadow: 0 7px 18px rgba(38, 151, 211, 0.06);
}

.pm-bis-notification--hidden {
    display: none;
}

.pm-bis-notification__top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pm-bis-notification__icon {
    display: inline-flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #2797d3;
    background: #e4f5fe;
    border-radius: 50%;
}

.pm-bis-notification__eyebrow {
    display: block;
    margin: 1px 0 4px;
    color: #2797d3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.pm-bis-notification__title {
    margin: 0;
    color: #27333d;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.pm-bis-notification__description {
    margin: 5px 0 0;
    color: #66737e;
    font-size: 13px;
    line-height: 1.55;
}

.pm-bis-notification__form {
    margin-top: 16px;
}

.pm-bis-notification__field-wrap {
    display: flex;
    gap: 8px;
}

.pm-bis-notification__email {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 44px;
    margin: 0;
    padding: 10px 13px;
    color: #27333d;
    background: #ffffff;
    border: 1px solid #cfe2ec;
    border-radius: 6px;
    box-shadow: none;
    font-size: 13px;
    line-height: 1.25;
}

.pm-bis-notification__email:focus {
    border-color: #2797d3;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(39, 151, 211, 0.14);
}

.pm-bis-notification__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 0;
    padding: 10px 16px;
    color: #ffffff;
    background: #2797d3;
    border: 1px solid #2797d3;
    border-radius: 6px;
    box-shadow: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.pm-bis-notification__button:hover,
.pm-bis-notification__button:focus {
    color: #ffffff;
    background: #147cb5;
    border-color: #147cb5;
}

.pm-bis-notification__button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.pm-bis-notification__privacy {
    margin: 10px 0 0;
    color: #7a8790;
    font-size: 11px;
    line-height: 1.5;
}

.pm-bis-notification__message {
    display: none;
    margin: 10px 0 0;
    padding: 10px 12px;
    color: #216887;
    background: #e6f7ff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.pm-bis-notification__message.is-visible {
    display: block;
}

.pm-bis-notification__message.is-error {
    color: #9e3535;
    background: #fff0f0;
}

.pm-bis-notification__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.pm-bis-notification.is-subscribed .pm-bis-notification__field-wrap,
.pm-bis-notification.is-subscribed .pm-bis-notification__privacy {
    display: none;
}

@media (max-width: 520px) {
    .pm-bis-notification {
        padding: 16px;
    }

    .pm-bis-notification__field-wrap {
        flex-direction: column;
    }

    .pm-bis-notification__button {
        width: 100%;
    }
}
