.mc-form-container, .mc-admin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}
.mc-email-input, .mc-submit-btn {
    width: 100%;
    max-width: 200px;
}
.mc-submit-btn {
    background: #2fd86e;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 0px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.mc-submit-btn:hover { background: #23b95c; }
.mc-consent-container { font-size: 14px; margin-bottom: 4px; }
.mc-success, .mc-error {
    margin-top: 7px;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 15px;
}
.mc-success { background: #e5fbe7; color: #23b95c; }
.mc-error { background: #fbe5e5; color: #c0392b; }
@media (max-width: 480px) {
    .mc-form-container, .mc-admin-form { max-width: 100%; }
    .mc-email-input, .mc-submit-btn { max-width: 100%; }
}