/* Omegafit Retention — popup styles */
#omg-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

#omg-popup-modal {
    background: #fff;
    border-radius: 8px;
    padding: 32px 28px 28px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

#omg-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 4px 8px;
}

#omg-popup-modal h2 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: #c72b5f;
}

#omg-popup-modal p {
    margin: 0 0 16px;
    color: #444;
    font-size: .95rem;
    line-height: 1.5;
}

#omg-popup-form input[type="email"],
#omg-popup-form input[type="text"]:not([tabindex="-1"]) {
    display: block;
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: .95rem;
    box-sizing: border-box;
}

#omg-popup-form input[type="email"]:focus,
#omg-popup-form input[type="text"]:focus {
    outline: 2px solid #c72b5f;
    border-color: #c72b5f;
}

.omg-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    font-size: .85rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

.omg-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #c72b5f;
}

.omg-consent a {
    color: #c72b5f;
    text-decoration: underline;
}

#omg-popup-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    background: #c72b5f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
}

#omg-popup-form button[type="submit"]:hover {
    background: #a8244f;
}

#omg-popup-form button[type="submit"]:disabled {
    opacity: .6;
    cursor: default;
}

#omg-popup-success {
    text-align: center;
    color: #2e7d32;
    font-weight: 600;
    padding: 16px 0;
}
