.ccec-signup-wrap {
    max-width: 480px;
    margin: 24px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
}

.ccec-heading {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
}

.ccec-subheading {
    margin: 0 0 14px;
    font-size: 14px;
    color: #555;
}

.ccec-field-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ccec-email-input {
    flex: 1 1 220px;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ccec-submit-btn {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #222;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.ccec-submit-btn:hover {
    background: #000;
}

.ccec-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Honeypot: hidden from real users, still present in DOM for bots */
.ccec-hp-wrap {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
}

.ccec-message {
    margin: 10px 0 0;
    font-size: 14px;
    min-height: 18px;
}

.ccec-message.ccec-success {
    color: #1a7f37;
}

.ccec-message.ccec-error {
    color: #c0392b;
}
