/* BS Newsletter Public Styles */

/* Subscribe form widget */
.bsnl-subscribe-form {
    max-width: 480px;
}

.bsnl-subscribe-form__title {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.bsnl-subscribe-form__field {
    display: flex;
    gap: 8px;
}

.bsnl-subscribe-form__input {
    flex: 1;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.bsnl-subscribe-form__input:focus {
    border-color: #333;
}

.bsnl-subscribe-form__button {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.bsnl-subscribe-form__button:hover {
    background: #555;
}

.bsnl-subscribe-form__button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bsnl-subscribe-form__message {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
}

.bsnl-subscribe-form__message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bsnl-subscribe-form__message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Public pages (verify, unsubscribe) */
.bsnl-page {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.bsnl-page__card {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bsnl-page__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #d4edda;
    color: #155724;
    font-size: 28px;
    margin-bottom: 20px;
}

.bsnl-page__title {
    font-size: 24px;
    color: #333;
    margin: 0 0 16px;
}

.bsnl-page__text {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 24px;
}

.bsnl-page__error {
    color: #721c24;
    background: #f8d7da;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.bsnl-page__button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.bsnl-page__button:hover {
    background: #555;
}

.bsnl-page__button--danger {
    background: #dc3545;
}

.bsnl-page__button--danger:hover {
    background: #c82333;
}

.bsnl-page__link {
    display: inline-block;
    margin-top: 16px;
    color: #666;
    font-size: 14px;
    text-decoration: underline;
}

.bsnl-page__link:hover {
    color: #333;
}
