/* ── Jeeva Mailer Public Styles ──────────────────────────────── */

.jm-form-wrap {
    position: relative;
}

.jm-optin-form {
    box-sizing: border-box;
    font-family: inherit;
    transition: opacity 0.3s;
}

.jm-optin-form * {
    box-sizing: border-box;
}

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

.jm-submit-btn {
    transition: opacity 0.2s, transform 0.1s;
}

.jm-submit-btn:hover {
    opacity: 0.9;
}

.jm-submit-btn:active {
    transform: scale(0.98);
}

.jm-submit-btn.jm-loading {
    opacity: 0.6;
    pointer-events: none;
}

.jm-form-message {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.jm-form-message.jm-success {
    color: #16a34a;
}

.jm-form-message.jm-error {
    color: #dc2626;
}

/* ── Popup form ─────────────────────────────────────────────────── */
.jm-form-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}

.jm-form-popup .jm-optin-form {
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ── Slide-in form ──────────────────────────────────────────────── */
.jm-form-slide_in {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99998;
    max-width: 380px;
}

.jm-form-slide_in .jm-optin-form {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ── Top bar form ───────────────────────────────────────────────── */
.jm-form-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99997;
    max-width: 100%;
}

.jm-form-bar .jm-optin-form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 0;
}

.jm-form-bar .jm-field {
    margin-bottom: 0 !important;
    flex: 1;
}

.jm-form-bar .jm-submit-btn {
    width: auto !important;
    white-space: nowrap;
}
