.subscribe-plugin-wrapper {
    padding: 2.5rem 1rem;
    /* Reduce horizontal padding */
    border-radius: var(--subs-radius, 10px);
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: var(--subs-font, inherit);
    box-shadow: var(--subs-shadow, none);
}

.subscribe-headline {
    margin-bottom: 25px;
    font-size: 2em;
}

.subscribe-field {
    margin-bottom: 15px;
}

.subscribe-field input {
    max-width: 600px;
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    box-sizing: border-box;
    text-align: center;
    background: var(--subs-inp-bg, #fff);
    color: var(--subs-inp-text, #333);
}

.subscribe-submit button {
    background: var(--subs-btn-bg, #444);
    color: var(--subs-btn-text, #fff);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    font-weight: bold;
}

.subscribe-submit button:hover {
    filter: brightness(0.8);
}

.subscribe-msg {
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
}

.subscribe-msg.success {
    background: #d4edda;
    color: #155724;
}

.subscribe-msg.error {
    background: #f8d7da;
    color: #721c24;
}