.convertmail-form {
    margin: 20px 0;
}

.convertmail-form-inner {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 24px;
}

.convertmail-field-group {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.convertmail-email {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
}

.convertmail-submit {
    padding: 12px 24px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.convertmail-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.convertmail-message.success {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.convertmail-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* Unsubscribe Option */
.convertmail-unsubscribe-option {
    margin-bottom: 16px;
    padding: 12px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
}

.convertmail-unsubscribe-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #856404;
    margin-bottom: 8px;
}

.convertmail-unsubscribe-description {
    margin: 0;
    font-size: 12px;
    color: #856404;
    line-height: 1.4;
}