/* ── Email Collector ────────────────────────────────────────────────────────── */

.ec-wrap {
    max-width: 440px;
    margin: 2rem auto;
}

/* Form card */
.ec-form {
    border: 2px solid #000;
    padding: 2rem 2.25rem;
}

/* Field group */
.ec-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.ec-field label {
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: .4rem;
}

.ec-field input {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: .65rem .85rem;
    font-size: 1rem;
    color: #222;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}

.ec-field input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

/* Submit button */
.ec-btn {
    display: block;
    width: 100%;
    margin-top: .25rem;
    padding: .75rem 1rem;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: .9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s, transform .1s;
}

.ec-btn:hover {
}

.ec-btn:active {
    transform: scale(.98);
}

/* Error message */
.ec-error {
    background: #fef2f2;
    border-left: 3px solid #dc2626;
    color: #991b1b;
    padding: .65rem .9rem;
    border-radius: 2px;
    margin-bottom: 1rem;
    font-size: .9rem;
}

/* Success state */
.ec-success {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    padding: 1.5rem 1.75rem;
    color: #15803d;
}

.ec-success svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    stroke: #16a34a;
}

.ec-success p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}